how to redirect to home page

前端 未结 8 1473
时光说笑
时光说笑 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

    window.location.href = "/";
    

    This worked for me. If you have multiple folders/directories, you can use this:

    window.location.href = "/folder_name/";
    

提交回复
热议问题