mod_rewrite with anchor link

六月ゝ 毕业季﹏ 提交于 2019-11-26 11:31:39

问题


I know you can\'t redirect anchor URLs to another page, but is it possible to redirect a URL to only a single anchor?

So

http://www.example.com/video/{title}

always gets sent to

http://www.example.com/video.php?title={title}#player

The only thing that changes is the title, anchor is always the same. I need to redirect to a certain slide on a coda slider


回答1:


RewriteRule ^/video/(.*) /video.php?title=$1#player [NE,L,R=301]

NE|noescape

By default, special characters, such as & and ?, for example, will be converted to their hexcode equivalent. Using the [NE] flag prevents that from happening.

Source : http://httpd.apache.org/docs/current/en/rewrite/flags.html




回答2:


You should be able to use the # sign in a redirect rule if you specify the NE flag (No Escape)



来源:https://stackoverflow.com/questions/2686075/mod-rewrite-with-anchor-link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!