.htaccess URL 重写问题

发布于 2024-12-13 07:56:51 字数 219 浏览 1 评论 0原文

我在尝试重写其中包含 # 的 url 时遇到了问题。重写本身很简单:

RewriteRule ^accessories/access/Roll-Up-PR30/accessories.php#a485$ /alog/roll-up-product.php

但它只是失败了并且不会让我在那里拥有哈希值。

欢迎任何反馈,因为我已经没有想法了:S

I've run into a problem when trying to rewrite a url that has a # in it. The rewrite itself is simple:

RewriteRule ^accessories/access/Roll-Up-PR30/accessories.php#a485$ /alog/roll-up-product.php

But it just falls over and will not let me have the hash in there.

Any feedback is welcome as I am running out of ideas :S

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

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

发布评论

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

评论(2

咽泪装欢 2024-12-20 07:56:51

不幸的是,大多数浏览器(据我所知)不会将 URL 的片段部分发送到服务器,因此它在 .htaccess 中不可用;这只是客户端锚点查找。

Unfortunately most browsers (that I know of) don't send the fragment part of the URL to the server so it's not available in .htaccess; it's just a client-side anchor lookup.

听风念你 2024-12-20 07:56:51

看来哈希是一个特例。请参阅http://httpd.apache.org/docs/2.0/misc/rewriteguide。 html

相关部分是“扩展重定向”

RewriteRule ^xredirect:(.+) /path/to/nph-xredirect.cgi/$1 \
            [T=application/x-httpd-cgi,L]

It seems that hashes are a special case. See http://httpd.apache.org/docs/2.0/misc/rewriteguide.html

The relevant section is "Extended Redirection"

RewriteRule ^xredirect:(.+) /path/to/nph-xredirect.cgi/$1 \
            [T=application/x-httpd-cgi,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文