使用 htaccess 处理 url 中的特殊字符

发布于 2024-12-02 07:14:08 字数 235 浏览 1 评论 0原文

这个想法是使用 www.example.com/admin/#!/12345 作为 www.example.com/admin/user.php?id=12345

这是重写规则我正在尝试,但这似乎不起作用

RewriteRule ^admin/#!/(.*)  www.example.com/admin/user.php?id=$2

如何我要包含这样的特殊字符吗? 谢谢

The idea is to use www.example.com/admin/#!/12345 as www.example.com/admin/user.php?id=12345

This is the rewrite rule Im trying, but this doesn't seem to work

RewriteRule ^admin/#!/(.*)  www.example.com/admin/user.php?id=$2

How do I include such special characters ?
Thank you

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

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

发布评论

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

评论(1

墨落画卷 2024-12-09 07:14:08

您不能使用 # 为 URL。浏览器会将其解释为片段标识符,并且永远不会将其(或 URL 的以下部分)发送到服务器。

You can't use # is URLs. The browser will interpret it as a fragment identifier and never even send it (or the following part of the URL) to the server.

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