PHP - 500内部服务器错误

时间:2017-06-11 20:09:01

标签: php .htaccess

我遇到错误“500内部服务器错误”

  

服务器遇到内部错误或配置错误   无法完成您的请求。

     

请与服务器管理员联系,告知他们时间   发生此错误,以及您之前执行的操作   错误。

     

有关此错误的详细信息可能在服务器错误中可用   日志中。

     

此外,遇到500内部服务器错误错误   尝试使用ErrorDocument来处理请求。

我用谷歌搜索,似乎是由于.htaccess   - 我的.HTACCESS代码:

IndexIgnore *

<IfModule mod_rewrite.c>

    #Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

# BEGIN EXPIRES
<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault "access plus 10 days"
    ExpiresByType image/gif "access plus 1 month"
    ExpiresByType image/png "access plus 1 month"
    ExpiresByType image/jpeg "access plus 1 month"
    ExpiresByType image/jpg  "access plus 1 month"

    <IfModule mod_headers.c>
        Header append Cache-Control "public"
      </IfModule>
</IfModule>
# END EXPIRES

<FilesMatch “.(ttf|otf|eot|woff)$”>
    <IfModule mod_headers.c>
        Header set Access-Control-Allow-Origin “*”
    </IfModule>
</FilesMatch>

你能帮我吗?

0 个答案:

没有答案