使用.htaccess中的RewriteRule重定向URL

时间:2016-10-12 01:59:40

标签: .htaccess

我想重定向像

这样的网址
https://www.domain.com/#new

https://www.domain.com/new.html

如何使用.htaccess

1 个答案:

答案 0 :(得分:0)

不幸的是,浏览器没有将hash部分的URL发送到服务器,因此在服务器中您无法真正使用此部分进行重定向。

您必须使用javascript代码:

hash = window.location.hash
if (hash.length > 0) {
    window.location = '/' + hash.substr(1) + '.html'
}
相关问题