htaccess 重定向 url 参数作为段

发布于 2024-12-13 10:16:23 字数 1459 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

我早已燃尽 2024-12-20 10:16:23

是的。试试这个:

RewriteCond %{QUERY_STRING} parameter=(.*)
RewriteRule test/index\.php test/%1

根据“匹配什么?”在 mod_rewrite 文档 中,查询字符串(< code>?) 被分离到 QUERY_STRING 变量中,然后必须将其与 URL 的主要部分分开进行测试。在 RewriteCond 中,参数值由括号 (.*) 内的正则表达式捕获,然后在重写规则

Yes. Try this:

RewriteCond %{QUERY_STRING} parameter=(.*)
RewriteRule test/index\.php test/%1

According to "What is matched?" in the mod_rewrite docs, the query string (part after the ?) is separated out into the QUERY_STRING variable, which then has to be tested separately from the main part of the URL. In RewriteCond, the parameter value is captured by the regular expression within the parentheses (.*), and is then available as %1 in the RewriteRule.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文