Lighttpd url 重写删除查询字符串变量

发布于 2024-08-05 17:51:31 字数 530 浏览 3 评论 0原文

我正在 Lighttpd 中使用重写 URL

url.rewrite-once = (
"^/(.*)\.(.+)$" => "$0",
"^/(.+/?)\??$" => "/index.php?q=$1"
)

,以便所有 url 作为变量 q 传递到 index.php。但是,当我访问 http://mydomain.com/account/edit?user=5 我在index.php 的脚本

q=account/edit?user=5

在apache 上运行我会获取所有变量,即

q=account/edit   AND
user=5

如何在Lighttpd 中保留变量?

(url.rewrite规则的第一部分是确保存在的文件正确显示)

I am rewriting a URL in Lighttpd using

url.rewrite-once = (
"^/(.*)\.(.+)$" => "$0",
"^/(.+/?)\??$" => "/index.php?q=$1"
)

So that all urls are passed to index.php as variable q. However when I visit http://mydomain.com/account/edit?user=5 my script at index.php gets

q=account/edit?user=5

on apache I would get all variables i.e.

q=account/edit   AND
user=5

How can I preserve the variables in Lighttpd?

(the first part of the url.rewrite rule is to ensure that files that exist are displayed properly)

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

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

发布评论

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

评论(1

风向决定发型 2024-08-12 17:51:31

尝试这样的事情:

  "^/something/(\d+)(?:\?(.*))?" => "/index.php?bla=$1&$2" 

或者这样

    "^/([^.?]*)\?(.*)$" => "/index.php?q=$1&$2",
  "^/([^.?]*)$" => "/index.php?q=$1"

Try something like this:

  "^/something/(\d+)(?:\?(.*))?" => "/index.php?bla=$1&$2" 

or this

    "^/([^.?]*)\?(.*)$" => "/index.php?q=$1&$2",
  "^/([^.?]*)$" => "/index.php?q=$1"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文