我正在尝试在.htaccess文件中执行以下永久重定向,但我无法使它们正常工作。你能救我吗?
非常感谢你。此致!
重定向是这样的:
http://www.example.com/?_escaped_fragment_=cavite-multi-channel-office/c1g7x
to
https://www.example.com/insurance-ph/contact-us/branches/cavite.jsp
答案 0 :(得分:1)
由于你想根据查询字符串重定向,我认为你可以在这里找到答案:How to redirect URLs based on query string?:)
所以在你的情况下,你会得到类似的东西:
RewriteCond %{QUERY_STRING} ^_escaped_fragment_=cavite-multi-channel-office/c1g7x$
RewriteRule (.*) https://www.example.com/insurance-ph/contact-us/branches/cavite.jsp [R=301,L]