0
我有一個簡單的問題,但我沒有找到一個解決方案在線:我需要從我的電腦上的測試網絡服務器中排除fisical目錄,名爲「stopdebiti2012b」,其中包含wordpress核心,在wp-content/themes /我有主題「stopdebiti」,我創建了一個名爲「blog /」的目錄,我需要從mod_rewrite中排除這個目錄,但沒有任何事情發生。WordPress的排除目錄
我已經使用所有常見的解決方案在互聯網上解釋..但沒有發生?
我該如何解決這個問題?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /stopdebiti2012b/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /stopdebiti2012b/index.php [L]
</IfModule>
# END WordPress
謝謝!