Mod_rewrite导致500和508错误

时间:2016-10-24 13:15:58

标签: wordpress .htaccess

我在.htaccess文件上遇到重写模式的问题。

  • 没有.htaccess:没有内部错误但只能访问主页
  • 使用.htaccess:所有网站似乎都在工作但是当我审核网站的SEO目的时,我看到了500个内部服务器错误和508个错误。

有什么想法解决这个问题吗?即使网站看起来不错,5xx错误也是SEO的真正问题。

这是我的htaccess文件:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

Screen shot of the 5xx errors

0 个答案:

没有答案