如何根据当前URL将当前页面重定向到其他URL?

时间:2017-08-22 07:35:00

标签: redirect

我想检查当前网址,如果它不是主页,我想使用jQuery或AngularJS将该网页重定向到特定的网址

2 个答案:

答案 0 :(得分:0)

<强> [角]   请尝试以下代码行:

       var   location = $location.path();           
        location = location.slice(1, location.indexOf("/"));
        location = location.toLowerCase();


        if (location != 'home') {              
            $location.path('/redirect/somewhere');
        }

答案 1 :(得分:0)

为此你不需要jQuery或AngularJS,简单的JS就足够了。

location.href 也是如此。

例如:

if(location.href != home_page_URL)
     location.href = new_page_URL;