2016-01-25 57 views
0

我怎樣才能重定向我的網址,從形式:JavaScript網址重定向與路徑磅砰焦炭

http://example.com/#!foo 

到窗體:

http://example.com/folder/#!foo 

使用JavaScript?

我知道使用hashbang進行url重定向在服務器端是不可能的,因爲#永遠不會發送到服務器。

我試過下面的代碼,但重定向沒有發生。

<script> 
window.open("http://example.com/folder/window.location.pathname); 

</script> 

有什麼想法嗎?

回答

1

嘗試:

window.location.assign(<the path you want>) 
1

嘗試:

window.open('http://example.com/folder/'+window.location.hash); 

正如你所說,哈希標籤將不會傳遞到服務器反正。