Forum Moderators: phranque
a) why this might be
b) is it doing my site any harm
c) what can I do about it
thanks guys...
There really is not much you can do when people are looking for pages that do not exist.
That being said, you should have a custom page (call it something like not_found.html) for not found pages that says something similiar to this:
"The page you are looking for no longer exists.
Please click on one of the links above to continue."
Make the page look like the rest of your site (headers, footers etc.)
and add this to you .htaccess file:
ErrorDocument 404 [yoursite.com...]
This will cause not_found.html to show up in the browser instead of the ugly 404 NOT FOUND standard stuff...
and add this to you .htaccess file:ErrorDocument 404 [yoursite.com...]
ErrorDocument 404 /not_found.html
However, the subject of this thread pertains to 403-Forbidden errors, so you may also want to declare a custom 403 error page using:
ErrorDocument 403 /forbidden.html
Jim