我在頂層目錄中安裝了Wordpress。我試圖在一個子目錄中放置一個單獨的Wordpress安裝 - 一種帶有自己的代碼文件和數據庫的「開發環境」。.htaccess根目錄中的Wordpress問題和子目錄中的單獨安裝
此刻,子目錄中的所有網址都有404頁未找到錯誤。
的.htaccess,子目錄:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /v3
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
</IfModule>
的.htaccess主目錄:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^laddercapital\.com$ [NC]
RewriteRule ^(.*)$ http://www.laddercapital.com/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/?v3/
RewriteRule . /index.php [L]
</IfModule>
想法?
在這裏有一個非常類似的問題我自己:http://serverfault.com/questions/ 336511/installed-wordpress-in-sub-directory-with-htaccess -in-root-directory 很高興在這裏看到一個答案... – 2011-12-01 12:53:47
OMG,這個問題是9個月前,我認爲這只是現在。 .... shooooot。 – 2011-12-01 13:13:02