0
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
我試圖RewriteCond %{REQUEST_URI} !^/blog/.*$
它不工作的.htaccess排除路徑和運行WordPress
我不知道什麼程序是當前網站上運行,我不能安裝在example.com/ WordPress的博客,因爲它返回了我的404頁面。如何排除example.com/blog以避免運行現有的webapp,但要安裝wordpress?