htaccess setting the mimetype for a single file

后端 未结 1 1610
别那么骄傲
别那么骄傲 2021-01-05 01:18

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

AddType application/javascript .js

How would one set the mimety

1条回答
  •  [愿得一人]
    2021-01-05 01:27

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

    
        AddType application/ecmascript .js
    
    

    0 讨论(0)
提交回复
热议问题