how to redirect to home page

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

    window.location = '/';
    

    Should usually do the trick, but it depends on your sites directories. This will work for your example

提交回复
热议问题