8
votes
3answers
532 views
What is the proper way to send an HTTP 404 response from an ASP.NET MVC action?
If given the route:
{FeedName}/{ItemPermalink}
ex: /Blog/Hello-World
If the item doesn't exist, I want to return a 404. What is the right way to do this in ASP.NET MVC?
6
votes
3answers
3k views
ASP.NET Custom 404 Returning 200 OK Instead of 404 Not Found
After trying to setup my site for Google Webmaster Tools I found that my Custom ASP.NET 404 page was not returning the 404 status code. It displayed the correct custom page and told the browser that …
6
votes
5answers
204 views
What are the most helpful features of effective 404 File Not Found error pages?
When a user comes across your site's 404 File Not Found error page, it is most likely not what they were looking for. Here, you have the opportunity to turn a dead end into a resource that can help …
5
votes
3answers
1k views
Deploy asp.net mvc beta to iis 6 causing 404’s
I'm struggling to get around the 404 errors from asp.net mvc beta when deploying on IIS 6. I had this working in one of the previews by mapping .mvc in IIS but this no longer works. I've read Omar's …
5
votes
2answers
3k views
404 Http error handler in Asp.Net MVC (RC 5)
How can I Handler 404 erros without framewok throw Execption 500 error code
4
votes
1answer
449 views
How do I fix routing errors from rails in production mode?
If I try and access some random string in the URL of my rails app, such as /asdfasdifjasdfkj then I am seeing a rails error message
Routing Error
No route matches "/asdfasdifjasdfkj" with …
3
votes
1answer
112 views
Significance of ‘pagerror.gif’?
I'm getting strange hits to a non-existant file on my site called 'pagerror.gif'. From some basic Googling it appears to be a file that Internet Explorer looks for in certain situations.
Can anyone …
3
votes
2answers
559 views
How do I create a decent error 404 handler for CodeIgniter?
CodeIgniter has /system/application/errors/error_404.php which is displayed when there is a 404 due to what is effectively a "controller not found" condition. However, for my project, I really need …
3
votes
3answers
121 views
Find Project by Permalink, 404 if not found
I changed my show controller to find records by their permalink rather than their id (for SEO juiciness).
def show
@project = Project.find_by_permalink(params[:id])
end
But, if I type in …
3
votes
2answers
856 views
Google 404 and .Net Custom Error Pages
This question has two parts really so even if you can help with just one part that will help me out a bit!
I've got an asp.net 2.0 website with a custom 404 page. When content is not found the site …
2
votes
5answers
92 views
MOSS 404 errors for some users on certain sites, sometimes…
Title says it all.
Everything works fine for most accounts 100% of the time but here and there some users who are able to access a subsite fine one day are greeted with a standard 404 the next. This …
2
votes
1answer
82 views
404 Error messages in django
I have a project that I am working on in django. There are a lot of instances where I:
raise Http404("this is an error")
and it creates a nice 404 page for me with the error message "this is an …
2
votes
2answers
125 views
How can I return a 404/50x status code from a Grails Controller?
I have a controller that needs to return a 404 page and status code on certain conditions. I can't seem to find out how to do this in Grails. A coworker recommended this method:
…
2
votes
2answers
228 views
Why doesn’t apache show a 404 error when I send a 404 header with php?
Hello,
I have a header('HTTP/1.0 404 Not Found'); somewhere along the code but it doesn't redirect to the Apache's default 404 page for some reason.
I have a Rewrite Rule on the .htaccess file that …
2
votes
2answers
487 views
Isapi Rewrite 301 redirect resolves as 404 - circular reference?
Hi,
I'm trying to use IIS Isapi Rewrite to do the following...
I need seo-friendly URLs to be (silently) converted back to application friendly URLs like so:
RewriteRule ^/seo-friendly-url/ …
