特定 URL htaccess 的重定向
我尝试将此答案中的解决方案应用于重定向问题。似乎不起作用。我很困惑。
我需要重定向 (domain.com/shop/cart.php?m=product_detail&p=7) 至 (domain.com/shop/category-page/product-page-c23/)。
我尝试过的代码如下:
RewriteEngine On
RewriteCond %{QUERY_STRING} (^|&)m=product_detail(&|$)
RewriteCond %{QUERY_STRING} !(^|&)p=7
RewriteRule cart.php /shop/category-page/product-page-c23/
我真的很感谢那里的任何建议。谢谢。我给你买瓶啤酒。
I tried to apply the solution in this answer to redirecting problem. Doesn't seem to work. I'm stumped.
I need to redirect (domain.com/shop/cart.php?m=product_detail&p=7)
to (domain.com/shop/category-page/product-page-c23/).
The code I tried is below:
RewriteEngine On
RewriteCond %{QUERY_STRING} (^|&)m=product_detail(&|$)
RewriteCond %{QUERY_STRING} !(^|&)p=7
RewriteRule cart.php /shop/category-page/product-page-c23/
I really appreciate any advice that is out there. Thank you. I'll buy you a beer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码中有一些小错误。在 .htaccess 中尝试以下代码:
There are some minor mistakes in your code. Try this code in .htaccess: