需要将 $_GET 参数添加到我的正则表达式中

发布于 2024-08-29 07:25:15 字数 353 浏览 9 评论 0原文

    url.rewrite-once = (
    ".*\.(js|ico|gif|jpg|png|css|html)$" => "$0",
    "^/([^?]*)(\?.*)?$" => "/$1.php/$2",
)

这就是我得到的,但参数不起作用。 我喜欢下面的网址

http://www.example.com/index.php/?r=something

看起来像这样:

http://www.example.com/index/?r=something

Thanx

    url.rewrite-once = (
    ".*\.(js|ico|gif|jpg|png|css|html)$" => "$0",
    "^/([^?]*)(\?.*)?$" => "/$1.php/$2",
)

This is what I got but the args don't work.
I like following url

http://www.example.com/index.php/?r=something

To look like this:

http://www.example.com/index/?r=something

Thanx

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

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

发布评论

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

评论(1

铜锣湾横着走 2024-09-05 07:25:15

如果请求 /index/?r=something,则会将其重写为 /index/.php/?r=something。所以尝试这个规则:

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

在这个模式中,尾部斜杠是可选的。

If /index/?r=something is requested, it is rewritten to /index/.php/?r=something. So try this rule:

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

With this pattern the trailing slash is optional.

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