301重定向到子文件夹但输入

时间:2016-10-25 18:33:55

标签: wordpress .htaccess redirect mod-rewrite

我希望自己的wordpress网站重定向能够记住网址,但要将其放在子文件夹中。

因此http://www.example.com/test123必须重定向到http://www.example.com/voetbal/test123

http://www.example.com/0239http://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 /

之后

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ /voetbal%{REQUEST_URI} [L,R=301]