Apache2 server mime types

女生的网名这么多〃 提交于 2019-11-28 11:31:21

I believe you have to add a . before the extension:

AddType application/octet-stream .xyz

Johannes Thoma

I wont recommend to use .htaccess with Rails apps. You have to configure certain things for apache and passenger. Better use the config file in /etc/httpd/conf.d (or wherever you have configured your app on your server). If you put the AddType line as follows (in my case, I had the problem with downloadable Python Scripts):

AddType application/x-python-script .py

in the VirtualHosts section of your webapp config file, then you'll should be fine. If you really want to use .htaccess, do a

chmod 600 .htaccess

in your public folder, which causes apache not to ignore the file for savety reasons (but again, you'll need to configure lots of other stuff then).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!