我有一個Wordpress安裝在銀色條紋安裝的子目錄中。由於重寫,我無法讓Wordpress網站的前端顯示,但是如果我添加/index.php,則後端不會出現問題。htaccess - Wordpress裏面Silverstripe
如果我嘗試將/index.php附加到/subdirectory/index.php,它將重定向回子目錄。 WP htaccess中沒有規則,所以我認爲Silverstripe不喜歡擴展。
我試圖重寫引擎後添加此的Silvestripe現場排除整個子目錄文件夾:
RewriteCond %{REQUEST_URI} !^/subdirectory/.*
沒有得到它的權利。有沒有辦法讓'子目錄'做自己的事情?
對不起,我應該提到我曾嘗試過這樣做,但它會返回403錯誤,而後端仍然有效。刪除RewriteEngine顯示Silverstripe 404錯誤 – Craig
@Craig也許你沒有index.php作爲可能的索引頁面?應該可以用'DirectoryIndex'設置修復... http://stackoverflow.com/questions/10002439/make-index-html-default-but-allow-index-php-to-be-visited-if-typed-in – bummzack
再次非常感謝你!這似乎已經解決了這個問題。 – Craig