0
如何重定向到url參數中顯示的特定網址?獲取網址參數並使用javascript重定向到特定網址
例如:
http://www.mywebsite.com/Code_id.tv/stream.php
我想code_id,我會重定向到特定的URL。
結果URL最終會是這樣的:
http://www.mynewwebsite.com/tv.php?id=Code_id
感謝
如何重定向到url參數中顯示的特定網址?獲取網址參數並使用javascript重定向到特定網址
例如:
http://www.mywebsite.com/Code_id.tv/stream.php
我想code_id,我會重定向到特定的URL。
結果URL最終會是這樣的:
http://www.mynewwebsite.com/tv.php?id=Code_id
感謝
要拆分的路徑來獲取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;
工作!謝謝 – pakel
如何重定向與特定的IP地址國家? 例如:我想重定向,如果只有美國國家訪問者 – pakel
您需要使用這樣一個地理定位api http://www.hostip.info/use.html –