apache 中的重定向
Redirections in apache
我试图在 .htaccess 文件中执行以下永久重定向,但我无法使它们工作。你能帮帮我吗?
非常感谢。此致!
重定向是这样的:
http://www.example.com/?_escaped_fragment_=cavite-multi-channel-office/c1g7x
to
https://www.example.com/insurance-ph/contact-us/branches/cavite.jsp
既然您想根据查询字符串进行重定向,我想您可以在这里找到答案: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]
我试图在 .htaccess 文件中执行以下永久重定向,但我无法使它们工作。你能帮帮我吗?
非常感谢。此致!
重定向是这样的:
http://www.example.com/?_escaped_fragment_=cavite-multi-channel-office/c1g7x
to
https://www.example.com/insurance-ph/contact-us/branches/cavite.jsp
既然您想根据查询字符串进行重定向,我想您可以在这里找到答案: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]