基于URL的重定向 - JavaScript

时间:2013-08-02 17:16:42

标签: javascript redirect

如果有人输入'www.morgancc.edu',我希望它重定向到位于'www.morgancc.edu/m'的移动网站。但是,我只需要重定向 exact URL。如果你去“www.morgancc.edu/programs”之类的东西,我不希望它重定向,这是它目前正在做的事情。这是我到目前为止的代码:

<script type="text/javascript">
if (window.location = "www.morgancc.edu") {
   window.location.href = 'http://www.morgancc.edu/m/'; 
}
</script>

3 个答案:

答案 0 :(得分:6)

等于运算符是==,而不是=

答案 1 :(得分:5)

location。带有空路径的主机名是你想要的

if (window.location.hostname == "www.morgancc.edu" && 
    window.location.pathname=="" ) {
   window.location.href = 'http://www.morgancc.edu/m/'; 
}

或者看一下href

if (window.location.href== "http://www.morgancc.edu") {
   window.location.href = 'http://www.morgancc.edu/m/'; 
}

您可能需要添加一些/此处或那里

答案 2 :(得分:0)

我建议使用服务器端脚本语言来重定向访问您网站的设备。你的if语句中也有拼写错误,你应该 == 而不是 =

<script type="text/javascript">
if (window.location == "www.morgancc.edu") {
   window.location.href = 'http://www.morgancc.edu/m/'; 
}
</script>