Forum Moderators: phranque
I can't stand the blanket redirection to the home page
I can't stand the blanket redirection to the home page
You mean the extra connection due to the redirect headers?
The requested URL /cgi-bin/formmail was not found on this server.
Additionally, a 302 Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.37 whether by mistyping or by following a bad link
And the destination depends on the query.
Returning a code other than 404 or 410 for a non-existent page (or redirecting users to another page, such as the homepage, instead of returning a 404) can be problematic. Firstly, it tells search engines that there’s a real page at that URL.
What do you guys think - redirect all to homepage or nicely done custom 404 page?
You've got a pre-selected destination file for foo-quux ?!
Definitely redirect to a nicely done custom 404 page.
the sooner you recognise that is a problem, the better.
Definitely redirect to a nicely done custom 404 page.
Double trouble. Not only you will give out a 404 page but you will do a redirect first.
Returning a code other than 404 or 410 for a non-existent page (or redirecting users to another page, such as the homepage, instead of returning a 404) can be problematic.
ErrorDocument 404 /site-index.html
The soft 404 is a combination of a 302 redirect ending in a 404 page.
Returning a code other than 404 or 410 for a non-existent page (or redirecting users to another page, such as the homepage, instead of returning a 404) can be problematic.
I wonder what would happen if I set up a page for indexing that contained 1,000s of non-existent destinations to your site.
you want to 301 whatever you can if there is a logical replacement for something that was removed/replaced, or moved.
google also requests a file named in the following format:
http://example.com/google[longrandomalphanumericstring].notfound
google REALLY wants to see 404 Not Found for this type of request.