Wordpress +子文件夹+ htaccess + Internet explorer 7/9 =重定向循环

时间:2012-08-06 16:51:44

标签: php wordpress internet-explorer .htaccess wordpress-plugin

我在子文件夹中使用wordpress设计的网站存在问题。

Site www.risvegliati.it/blog/

因为如果我尝试使用Internet Explorer浏览会给出错误404吗?它与重定向循环:

Site error http://www.risvegliati.it/blog/blog/blog/blog/blog/....

这是http://www.risvegliati.it/

的文件索引
<?php 
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.risvegliati.it/blog" );
?>

结束这是/ blog

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

建议?

0 个答案:

没有答案