how to redirect to home page

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

    Can you do this on the server, using Apache's mod_rewrite for example? If not, you can use the window.location.replace method to erase the current URL from the back/forward history (to not break the back button) and go to the root of the web site:

    window.location.replace('/');
    

提交回复
热议问题