我有这个网址:
example.com/dolce-vita/fr/camping.php?CAMPING-LES-MYRTILLES&p=839000231
我希望将它重定向到这个:
example.com/rechercher-sur-le-site-45-1.html?q=CAMPING-LES-MYRTILLES
我试过了:
RewriteRule camping\.php?(.*) /rechercher-sur-le-site-45-1.html?q=$1 [NE,R=301,L]
RewriteRule camping\.php\?([a-zA-Z0-9]+)& /rechercher-sur-le-site-45-1.html?q=$1 [NE,R=301,L]
由于我无法使用 QSA 标记,我有点迷失:在我要重写的网址中,我有p=XX
这是我已经使用的参数(例如:/rechercher-sur-le-site-45-1.html?q=
表示index.php?p=45
)所以如果我使用QSA,它会在末尾添加p=839000231
并覆盖我的p=45
参数...
坦克帮助你:)