假设有人使用此网址访问我的网站:
mywebsite.com/somethingsomething123
我想创建一个新网址并将其转换为:
anotherwebsite.com/somethingsomething123
我怎么能这样做?
任何帮助将不胜感激。
答案 0 :(得分: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>
&#13;
注意:如果您想使用url重写来执行此操作,请指定是否 它的Windows或Linux托管