我想重定向(不改变网址)从mysite.com/order/business到mysite.com/order/index.php?tariff=business
我有这个.htaccess:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule order/(startup|business|vip) order/index.php?tariff=$1 [R=301,L]
它在我的本地主机上正常运行,但在共享主机上我重定向(url 正在更改)。出了什么问题?我该如何修复它?