特定 URL htaccess 的重定向

发布于 2024-11-09 15:15:43 字数 472 浏览 0 评论 0原文

我尝试将此答案中的解决方案应用于重定向问题。似乎不起作用。我很困惑。

我需要重定向 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮云落日 2024-11-16 15:15:43

您的代码中有一些小错误。在 .htaccess 中尝试以下代码:

Options -MultiViews +FollowSymLinks
RewriteEngine On

RewriteCond %{QUERY_STRING} (^|&)m=product_detail(&|$) [NC]
RewriteCond %{QUERY_STRING} (^|&)p=7(&|$) [NC]
RewriteRule ^shop/cart\.php/?$ /shop/category-page/product-page-c23/ [NC,L]

There are some minor mistakes in your code. Try this code in .htaccess:

Options -MultiViews +FollowSymLinks
RewriteEngine On

RewriteCond %{QUERY_STRING} (^|&)m=product_detail(&|$) [NC]
RewriteCond %{QUERY_STRING} (^|&)p=7(&|$) [NC]
RewriteRule ^shop/cart\.php/?$ /shop/category-page/product-page-c23/ [NC,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文