问题.htaccess重写

时间:2018-06-04 13:45:38

标签: .htaccess

我有几台服务器具有不同的催化结构和相同的文件。我想将至少有一个短语".php/"的所有地址重定向到http://localhost/kat1/kat2/kat3/index.php/abc,例如:http://localhost/kat1/kat2/kat3/index.phphttp://localhost/kat1/kat2/kat3/kat4/index.php/abc/index.php。 和 http://localhost/kat1/kat2/kat3/index.phpOptions +FollowSymlinks RewriteEngine on RewriteRule ^(.*).php\/(.*)$ index.php

我尝试了但不起作用:

merchantTotal formula: "total_amount - IFNULL(penalty_fee, 0)"

我该怎么做?

1 个答案:

答案 0 :(得分:1)

您可以在站点根目录中使用此单一规则.htaccess:

RewriteEngine On

RewriteCond %{THE_REQUEST} \s/+(.+?\.php)/ [NC]
RewriteRule ^ /%1 [L,NE,R=301]

# remaining rules go below