我有几台服务器具有不同的催化结构和相同的文件。我想将至少有一个短语".php/"
的所有地址重定向到http://localhost/kat1/kat2/kat3/index.php/abc
,例如:http://localhost/kat1/kat2/kat3/index.php
到http://localhost/kat1/kat2/kat3/kat4/index.php/abc/index.php
。
和
http://localhost/kat1/kat2/kat3/index.php
至
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*).php\/(.*)$ index.php
。
我尝试了但不起作用:
merchantTotal formula: "total_amount - IFNULL(penalty_fee, 0)"
我该怎么做?
答案 0 :(得分:1)
您可以在站点根目录中使用此单一规则.htaccess:
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/+(.+?\.php)/ [NC]
RewriteRule ^ /%1 [L,NE,R=301]
# remaining rules go below