我有我的服務器位於這樣三個不同的WordPress網站:多的WordPress安裝
/WWW - >主網站
/WWW /站點2/
/WWW/site3/
主要網站正在工作,但site2和site3,這是文件夾內的WordPress網站沒有。我越來越對站點2和site3下面的錯誤,我認爲它做的htaccess的:
Warning: include(modules/.php) [function.include]: failed to open stream: No such file or directory in /www/index.php on line 154
Warning: include() [function.include]: Failed opening 'modules/.php' for inclusion (include_path='.:/usr/share/pear') in /www/index.php on line 154
我有/ WWW /站點2 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
任何想法我做錯了什麼,我應該如何配置htaccess?
你也可以擁有的WordPress的網絡安裝,因爲它會easyer上maintnance。這裏有一些關於這個http://codex.wordpress.org/Create_A_Network –