【发布时间】:2025-12-26 13:30:12
【问题描述】:
我的 .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。 请帮帮我。提前谢谢。
【问题讨论】:
标签: php apache .htaccess php-5.3