Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my asp.net web site I have custom error pages defined as following in my web.config file.

<customErrors mode="On" defaultRedirect="~/defaulterror.htm" >
<error statusCode="404" redirect="~/404.htm" />

When file is not found it correctly display 404.htm page but the issue is when I do Fiddler trace it returns 302 as HTTP status code.This is a big issue for search engine page indexing due to this lot of broken links still have been indexed recently because of this in my web site. how can I prevent returning 302 as HTTP status code for file not found errors and return 404 for file not found errors.I am using asp.net 3.5.

share|improve this question
1  
See this post, which is an example of a custom 404 error page solution using ASP.Net MVC filter attributes. This solution also avoids the 302 / 200 messages to the browser. The browser gets a 404 response. – sky-dev Nov 1 '11 at 14:16

4 Answers

up vote 9 down vote accepted

When after googling about this issue it seems that this is the default behaviour that microsoft asp.net developers has handled the situation.This is very bad for SEO. Work around I found is check whether requested file exists in a HTTP handler(or global asax file) or use

<customErrors mode="On" redirectMode="ResponseRewrite"><error statusCode="404" redirect="/FileNotFound.aspx" /> </customErrors>

and rewrite the reqeust path to file not found page(if use http handler or global asax) if requested file not exists and to clear the server errors in 404 error page code behind and add 404 error header to response manualy rather than waiting for server to do so.

        Server.ClearError();
        Response.Status = "404 not found";
        Response.StatusCode = 404;
share|improve this answer
redirectMode attribute was added in .NET FW 4.0, at least! – Petr Felzmann Mar 29 '11 at 19:16
This is perfect. The URL stays on the same page, but now I get the proper 404 status code. – kd7iwp May 17 '12 at 20:57
hey can you make this full example. i don't get this one. – MonsterMMORPG Apr 17 at 10:09

As you probably already know the 302 response is used to advise the caller that the requested resource has been moved to a different location.

When you see, in Fiddler, the 302 http code being returned is there also a 'location' declaration in the header? For example:

HTTP/1.1 302 Found
Location: http://www.yoursite.com/somewhere/blah.htm

It seems that you may have 'something' on the webserver that is intercepting the 404 returns and replacing these with 302's. I know this isn't much to go on but I would suggest that you look at the IIS configuration for the site.

share|improve this answer

The solution was even simpler.. Please check out my response over here: http://blog.hebbink.com/post/2010/12/14/NET-custom-404-error-page-returns-302-for-http-status.aspx

share|improve this answer
13  
And hence the importance of including the solution in the answer (as well as the link) - they no longer seem to have a blog. – James Skemp Jul 29 '11 at 16:19
1  
How ironic is that the link in this answer point to.....404 page not found :) – Ido Ran Nov 4 '12 at 10:58
And of course it does not return the 404 error code... – yo hal Dec 26 '12 at 16:37

This solution is one of the first ones I've actually seen work. Most other tutorials on error handling in IIS6-7 only leads to soft 302 header responses instead of HARD 404:s (which is preferred for SEO purposes). The question however is how you redirect to a custom error page if you have several sites on IIS and wish to have different error pages instead of the standard IIS 404 error page? This solution points to the standard 404 on the server even if you try to change that part in the web.config file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.