2013-07-21 34 views
0

我已經在wordpress上安裝了多個博客來創建雙語網站。其中一個博客安裝在根文件夾中,另一個是最初安裝的默認博客。當我打開我的第一個博客時,我收到以下消息:「此網頁具有重定向循環」。我的第二個博客安裝在根文件夾中工作正常。清除緩存或Cookie沒有幫助,因爲此消息出現在多個瀏覽器中。我認爲問題在於.htaccess文件。這個網頁有一個重定向循環Wordpress

我的.htaccess文件:

# BEGIN WordPress 
RewriteEngine On 
RewriteBase/
RewriteRule ^index\.php$ - [L] 

# uploaded files 
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] 

# add a trailing slash to /wp-admin 
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] 

RewriteCond %{REQUEST_FILENAME} -f [OR] 
RewriteCond %{REQUEST_FILENAME} -d 
RewriteRule^- [L] 
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] 
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] 
RewriteRule . index.php [L] 
# END WordPress 

感謝您的幫助!

回答

0

嘗試導出博客並使用多站點支持重新安裝WordPress。您可以在WordPress界面中創建單獨的博客。

相關問題