我想重定向像
这样的网址https://www.domain.com/#new
到
https://www.domain.com/new.html
如何使用.htaccess
?
答案 0 :(得分:0)
不幸的是,浏览器没有将hash
部分的URL发送到服务器,因此在服务器中您无法真正使用此部分进行重定向。
您必须使用javascript
代码:
hash = window.location.hash
if (hash.length > 0) {
window.location = '/' + hash.substr(1) + '.html'
}