将以指定单词开头的所有路线重定向到主页

时间:2015-04-23 09:27:54

标签: php apache .htaccess php-5.3

我的.htaccess有问题。我的文件.htaccess:

RewriteCond %{REQUEST_URI} ^/paiement
RewriteRule .* /index.php

RewriteCond %{REQUEST_URI} ^/paiement/test1/ [OR]
RewriteCond %{REQUEST_URI} ^/paiement/test2/dfd/$ [OR]
RewriteCond %{REQUEST_URI} ^/paiement/test3/lkjjk [OR]
RewriteCond %{REQUEST_URI} ^/paiement/test4/fdf/fdfd/?$
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [S=1]
RewriteRule ^(.*) /another/$1 [QSA,L

所以我想将所有以/ paiement开头的路由重定向到index.php。 请帮帮我。 Thx提前。

1 个答案:

答案 0 :(得分:1)

抱歉,我找到了解决方案,有必要重定向到root,如下所示:

RewriteCond %{REQUEST_URI} ^/paiement
RewriteRule (.*) / [R=301,L]