.htaccess 500 internal server error when set ExpiresActive

前端 未结 1 1742
孤街浪徒
孤街浪徒 2020-12-20 14:41

In my .htaccess I have this code:



        
相关标签:
1条回答
  • 2020-12-20 15:07

    Ensure that you have these Apache modules enabled and loaded:

    • ExpiresActive -- mod_expires
    • Header -- mod_headers

    Try this instead (it will only use directives if corresponding module is present):

    <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf|txt|html|x-html|php|css|xml|js|woff|ttf|svg|eot)(\.gz)?$">
        <IfModule mod_expires.c>
            ExpiresActive On
        </IfModule>
        <IfModule mod_headers.c>
            Header set Expires "Sun, 27 May 2012 00:00:00 GMT"
            Header unset ETag
        </IfModule>
        FileETag None
    </FilesMatch>
    
    0 讨论(0)
提交回复
热议问题