how to redirect to home page

前端 未结 8 1297
时光说笑
时光说笑 2021-02-01 11:45

How can I redirect a user to home page?

Example: mywebsite.com/ddfdf/fdfdsf and I want to redirect to mywebsite.com

However I want to do it wit

相关标签:
8条回答
  • 2021-02-01 12:31

    maybe

    var re = /^https?:\/\/[^/]+/i;
    window.location.href = re.exec(window.location.href)[0];
    

    is what you're looking for?

    0 讨论(0)
  • 2021-02-01 12:41

    var url = location.href;
    var newurl = url.replace('some-domain.com','another-domain.com';);
    location.href=newurl;

    See this answer https://stackoverflow.com/a/42291014/3901511

    0 讨论(0)
提交回复
热议问题