带变量的 301 重定向 URL

发布于 2024-12-10 12:26:53 字数 179 浏览 0 评论 0原文

我想使用 htaccess 访问 301 重定向(而不是重写)网址,例如:

brands.php?brand=索尼

索尼

品牌/索尼

我该怎么做?提前感谢您的帮助。

I want to use htaccess to 301 redirect (not rewrite) urls like:

brands.php?brand=Sony

to

brands/Sony

How can i do that? Appreciate your help in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

渡你暖光 2024-12-17 12:26:53

那么您的用户正在浏览器中输入 brands.php?brand=Sony 并被重定向?如果我的说法正确的话,那就很简单了:

RewriteEngine On
RewriteCond %{QUERY_STRING} brand=([^&]+) [NC]
RewriteRule brands\.php brands/%1 [L,R=301]

So your users are entering brands.php?brand=Sony into their browser, and being redirected? If I have that correct, it's simple:

RewriteEngine On
RewriteCond %{QUERY_STRING} brand=([^&]+) [NC]
RewriteRule brands\.php brands/%1 [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文