我希望自己的wordpress网站重定向能够记住网址,但要将其放在子文件夹中。
因此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 /
之后答案 0 :(得分:0)
尝试:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ /voetbal%{REQUEST_URI} [L,R=301]