我需要更新目前的网址:
www.examplesite.com/#q=test
到
www.examplesite.com/?q=test
我尝试使用.htaccess和javascript的各种方法但没有成功。
用户进入#q,我需要重定向到?q
由于
答案 0 :(得分:1)
如何使用HTML meta
元素进行重定向?
<html>
<head>
<meta http-equiv="refresh" content="0; url=http://google.com/?q=hi" />
</head>
</html>
如果您更愿意使用Javascript,可以使用:
location.href = "http://www.google.com/?q=hi";