我想我的WordPress的網站重定向記住的網址,但將其放在一個子文件夾。301重定向到子文件夾,但與輸入
所以http://www.example.com/test123具有重定向到http://www.example.com/voetbal/test123
而且http://www.example.com/0239到http://www.example.com/voetbal/0239
我的htaccess看起來是這樣的。
RewriteEngine On
RewriteBase /voetbal/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /voetbal/index.php [R=301, L]
這使得我的網站去從http://www.example.com到http://www.example.com/voetbal/ 但只有根。
我怎樣才能讓我的htaccess記住人民輸入,並將其放置後/ voetbal/
你發送*所有*請求到一個子文件夾?如果是這樣,爲什麼?或者是否有其他內容,例如通過'http:// www.example.com /其他文件夾/'? – Walf