htaccess setting the mimetype for a single file

戏子无情 提交于 2020-02-13 10:25:42

问题


In an .htaccess file one might set the mimetype for a given extension like:

AddType application/javascript .js

How would one set the mimetype for a single file instead of an extension? I have one Javascript that needs a different mimetype than other Javascript files in the same folder.

AddType application/javascript .js
AddType application/ecmascript specialfile.js

The second line does not work.


回答1:


You can use the <files> container to match the file's name before adding a type for it:

<Files specialfile.js>
    AddType application/ecmascript .js
</Files>


来源:https://stackoverflow.com/questions/15628826/htaccess-setting-the-mimetype-for-a-single-file

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