how to redirect non existent link on website back to the home page

前端 未结 4 1125
后悔当初
后悔当初 2021-01-22 09:45

my question is how to redirect any non existent link on my website back to the home page. For example; imagine i have a page called \"pets\" on my site (http://mywebsite.com/pet

4条回答
  •  借酒劲吻你
    2021-01-22 10:30

    you can use mod_rewrite

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule (.*) index.php [R]
    

提交回复
热议问题