Lighttpd url 重写删除查询字符串变量
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样的事情:
或者这样
Try something like this:
or this