2015-10-17 61 views
-1

比方說,有人來到我的網站與這個網址:獲取子鏈接將其加載到一個新的URL

mywebsite.com/somethingsomething123

我想創建一個新的URL和轉它轉換成:

anotherwebsite.com/somethingsomething123

我怎麼能做到這一點?
任何幫助,將不勝感激。

+0

嘗試使用'location.pathname';例如'var path = location.pathname; var newurl =「anotherwebsite.com」+ path;' – guest271314

回答

0

因此,使用JavaScript你這樣的:

var path_Name; // it will be like somethingsomething123 
 
redirect_Url="www.example.com"; // anotherdomain.com 
 
function test(){ 
 
path_Name = window.location.pathname; 
 
window.location.href='http://'+redirect_Url+path_Name 
 
};
<button onClick="test()" >Click Here </button> 
 
<h3>I have used test() function on click event you can use it on window.onLoad or any other javascript event </h3>

注意:如果你想要做的使用URL重寫則指定 它的Windows或Linux是否託管

+0

老實說,我的網址看起來像 mywebsite.com/qwerty=ok&hello=somethingsomething123所以其他網站 –

+0

也沒有找到一個redirrect –

相關問題