标签: php url hash
可能重复: # in url getting ignored in php 5.2
我在网页上有以下链接。在这里,我发送返回(/profile?id=6#contacts)作为url param,在操作完成后返回。但它只发送/profile?id=6到 verify.php 脚本。
/profile?id=6#contacts
/profile?id=6
http://example.com/verify.php?id=1&sessionId=6&return=/profile.php?id=6#contacts
我知道哈希值没有传递给服务器,但我想知道有没有办法将带有#值的complete 返回参数传递给服务器。
由于
答案 0 :(得分:4)
您需要urlencode()整个return参数。
urlencode()
return