I have simple html site. how I can fix the problem ‘The requested URL was not found on this server’ when user gives wrong URL. for example user type mydomain.com/abc.html and this page is not exist on server, so it will cause an error. how to redirect it on error page to avoid this error.
Share
Create a .htaccess file and add this line.
ErrorDocument 404 /foo.htmlThis will redirect any 404 error to foo.html