如何重定向到url参数中显示的特定网址?
示例:
http://www.mywebsite.com/Code_id.tv/stream.php
我想获取code_id,我将重定向到特定网址。
结果网址最终将如下所示:
http://www.mynewwebsite.com/tv.php?id=Code_id
由于
答案 0 :(得分:0)
分割路径以获取code_id:
var url2Process = window.location.pathname;
var patharray = url2Process.split( '/' );
// remove '.tv' or '.movie' or '.whatever' from the end
var code_id_array = patharray[1].split('.');
var code_id = code_id_array[0];
// redirect
window.location = 'http://domain.com/rb/play.php?id=tt' + code_id;