$_SERVER['REQUEST_URI'] 也带有#hash?
如果我请求 site/page.php#hash
,$_SERVER['REQUEST_URI']
只是 /page.php
.
If i request site/page.php#hash
the $_SERVER['REQUEST_URI']
is only /page.php
.
有没有办法在 php 中(没有后来的 ajax)知道用户使用 #hash
请求页面?
Is there a way to know in php (without later ajax) that the user requested the page with #hash
?
谢谢
推荐答案
简短回答:否.
哈希不会传递到服务器,它只存在于客户端.这是设计使然.如果您的问题的解决方案涉及需要了解哈希服务器端,那么您选择了错误的方法.
The hash isn't passed to the server, it exists only on the client-side. This is by design. If the solution to your problem involves needing to know the hash server-side, you've chosen the wrong way to go about it.
相关文章