.htaccess 重写传递所有查询字符串

发布于 2024-11-08 06:38:55 字数 319 浏览 0 评论 0原文

目前我使用:

RewriteRule ^([^/\.]+)/?$ page.php?page=$1 [L]

这对于传递一个查询字符串时很有用。

但是有没有办法只传递所有查询字符串呢?即一个页面请求可能是:

domain.com/contact?course=23

另一个页面请求可能是:

domain.com/contact?workshop=41

所以我需要知道查询字符串名称是什么,但一次只会传入一个

Currently I use:

RewriteRule ^([^/\.]+)/?$ page.php?page=$1 [L]

Which is good for when passing one querystring through.

But is there a way just to pass all querystrings through? i.e. One page request might be:

domain.com/contact?course=23

and another may be:

domain.com/contact?workshop=41

So I need to know what the query string name is, but only ever one will be passed in at a time

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

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

发布评论

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

评论(2

梦晓ヶ微光ヅ倾城 2024-11-15 06:38:55

如果我正确理解您的问题,您只需添加 [QSA] (查询字符串附加)标志到您的RewriteRule的末尾,

RewriteRule ^([^/\.]+)/?$ page.php?page=$1 [L,QSA]

这将像您已经完成的那样处理您的请求,并将任何进一步的查询字符串参数添加到末尾。

If I understand your question correctly, you can just add the [QSA] (query string append) flag to the end of your RewriteRule

RewriteRule ^([^/\.]+)/?$ page.php?page=$1 [L,QSA]

This will process your request as you've already done, and add any further querystring params onto the end.

無處可尋 2024-11-15 06:38:55

这就是我所做的。

RewriteRule ^((/?[^/]+)+/?)$ ?q=$1 [L]

现在,domain.com/ 之后的整个部分都在 $_GET['q 中']index.php 中。例如,如果您请求 domain.com/articles/12,则 q 包含 articles/12。然后用例如 explode('/', $_GET['q']) 来解析它就很简单了。

This is what I do.

RewriteRule ^((/?[^/]+)+/?)$ ?q=$1 [L]

Now the whole part after domain.com/ is in $_GET['q'] in index.php. E.g. if you request domain.com/articles/12, q contains articles/12. It's then trivial parse it with e.g. explode('/', $_GET['q']).

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