1,827 views
in Articles by
I want redirect 404 page visitor to the home page of my website

Please log in or register to reply to this topic.

1 reply

by
Go your web host control panel and look for htaccess file in your domain root folder.

try adding below code to your .htaccess file.

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . / [L,R=301]

Above code would redirect any 404 error to your website homepage.

Related topics

...