【发布时间】:2012-06-30 15:54:25
【问题描述】:
我已经上传了 wordpress 文件,当我访问我的域时出现此错误... 错误 310 (net::ERR_TOO_MANY_REDIRECTS):重定向过多。
【问题讨论】:
我已经上传了 wordpress 文件,当我访问我的域时出现此错误... 错误 310 (net::ERR_TOO_MANY_REDIRECTS):重定向过多。
【问题讨论】:
一些建议-
检查这些要点并告诉我
【讨论】:
我以前遇到过这个问题。尝试重置您的永久链接。 将您的 .htaccess 代码重写为:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
它应该将其设置为默认永久链接。
【讨论】: