The 404 or Not Found error message is a HTTP standard response code indicating that the client was able to communicate with the server, but the server could not find what was requested.

learn more… | top users | synonyms (1)

132
votes
8answers
22k views

How can I properly handle 404 in ASP.NET MVC?

I am just getting started on ASP.NET MVC so bear with me. I've searched around this site and various others and have seen a few implementations of this. EDIT: I forgot to mention I am using RC2 ...
43
votes
6answers
7k 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?
27
votes
5answers
9k views

Google App Engine and 404 error

I've setup a static website on GAE using hints found elsewhere, but can't figure out how to return a 404 error. My app.yaml file looks like - url: (.*)/ static_files: static\1/index.html upload: ...
21
votes
8answers
20k views

Easy way to test a URL for 404 in PHP?

I'm teaching myself some basic scraping and I've found that sometimes the URL's that I feed into my code return 404, which gums up all the rest of my code. So I need a test at the top of the code to ...
19
votes
8answers
18k views

Sending a 404 error in PHP

if (strstr($_SERVER['REQUEST_URI'],'index.php')){ header('HTTP/1.0 404 Not Found'); } Why wont this work? I get a blank page.
19
votes
6answers
12k 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 ...
17
votes
4answers
10k views

404 Http error handler in Asp.Net MVC (RC 5)

How can I Handler 404 erros without framewok throw Execption 500 error code
14
votes
1answer
105 views

Fix bad referer URLs

I recently notice bad URLs coming from external sites to my site. I get a lots of 404 not found from sites that reference my site using a bad link like: My site - ...
13
votes
8answers
4k views

Best way to implement a 404 in ASP.NET

I'm trying to determine the best way to implement a 404 page in a standard ASP.NET web application. I currently catch 404 errors in the Application_Error event in the Global.asax file and redirect to ...
12
votes
3answers
5k 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 ...
11
votes
5answers
4k views

Django staticfiles app help

I've having a little issue with Django's staticfiles app. I have added 'django.contrib.staticfiles', to my INSTALLED_APPS and have added STATIC_URL = '/static/' STATIC_ROOT = ...
11
votes
3answers
10k views

How can i make a catch all route to handle '404 page not found' queries for ASP.NET MVC?

Is it possible to create a final route that catches all .. and bounces the user to a 404 view in ASP.NET MVC? NOTE: I don't want to set this up in my IIS settings.
10
votes
7answers
2k views

how callback a function on 404 on JSON ajax request with Jquery?

I want made an Ajax request with response on JSON. So I made this Ajax request : $.ajax({ url: 'http://my_url', dataType: "json", success: function(data){ alert('success'); }, ...
10
votes
4answers
7k views

Basic Rails 404 Error Page

I have been looking for a simple answer to this for a ridiculously long time and it seems like this has to be so plainly obvious and simple because no one has an easy, idiot proof tutorial. Anyway, ...
10
votes
3answers
3k 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: ...
10
votes
3answers
17k views

Nginx - Customizing 404 page

Nginx+PHP (on fastCGI) works great for me, but when I enter a path to a PHP file which doesnt exit, instead of getting the default 404 error page (which comes for any invalid .html file), I simply get ...
9
votes
5answers
2k views

How to get MVC action to return 404

I have an action that takes in a string that is used to retrieve some data. If this string results in no data being returned (maybe because it has been deleted), I want to return a 404 and display an ...
8
votes
4answers
2k views

Why is @font-face throwing a 404 error on woff files?

I'm using @font-face on my company's site and it works/looks great. Except Firefox and Chrome will throw a 404 error on the .woff file. IE does not throw the error. I have the fonts located at the ...
8
votes
1answer
1k views

Android Multipart Upload

As part of my Android app, I'd like to upload bitmaps to be remotely stored. I have simple HTTP GET and POST communication working perfectly, but documentation on how to do a multipart POST seems to ...
8
votes
2answers
624 views

ASP.NET MVC: How to serve content while returning status code 404? [closed]

Possible Duplicate: How to configure IIS to serve my 404 response with my custom content? I would like to serve a user friendly "not found" page in my ASP.NET MVC application while ...
7
votes
5answers
67 views
+50

redirect 404 to similar urls

i have a website with stories in it. i can have multiple type of stories within multiple categories like: children romance scifi action thriler quests the sotries are stored (i have a mysql db) ...
7
votes
4answers
626 views

How to display Apache's default 404 page in PHP

I have a webapp that needs to process the URI to find if a page exists in a database. I have no problem directing the URI to the app with .htaccess: Options +FollowSymlinks RewriteEngine on ...
7
votes
5answers
546 views

Custom 404 page - PHP

I have a custom 404 page which works fine except for the message I want to display on this page. I would like it to say the url of the page which can't be found but instead it displays the url of the ...
7
votes
3answers
1k views

Zend Framework: How to intentionally throw a 404 error?

I would like to intentionally cause a 404 error within one of the controllers in my Zend Framework application. How can I do this?
7
votes
6answers
995 views

ASP.NET MVC - How to throw a 404 page similar to that on StackOverflow

I've currently got a BaseController class that inherits from System.Web.Mvc.Controller. On that class I have the HandleError Attribute that redirects users to the "500 - Oops, we screwed up" page. ...
7
votes
6answers
156 views

are there any negative implications of sourcing a javascript file that does not actually exist?

If you do script src="/path/to/nonexistent/file.js" in an HTML file and call that in a browser, and there are no dependencies or resources anywhere else in the HTML file that expect the file or code ...
7
votes
1answer
783 views

Getting a 404 when setting up MVC in IIS 6 and using .NET 4 beta 2

I've completed this set up on a fair few IIS 6 boxes, but one is giving me a tough time. The problem occurs when I add the application extension mapping to: ...
7
votes
2answers
3k views

Is there a way to force apache to return 404 instead of 403?

Is there a way how I can configure the Apache web server to return a 404 (not found) error code instead of 403 (forbidden) for some specific directories which I want to disallow to be accessed? I ...
7
votes
2answers
2k 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 ...
6
votes
6answers
302 views

When is a 404 not a 404?

I'm using this jQuery below call to load a .php file located on the same server. However, using Chrome's javascript console, its reporting "404 not found" on the php file I'm trying to load. ...
6
votes
2answers
388 views

Rails - any fancy ways to handle 404s?

I have a rails app I built for an old site I converted from another cms (in a non-rails language, hehe). Most of the old pages are mapped to the new pages using routes.rb. But there are still a few ...
6
votes
2answers
5k views

How can I get NSURLResponse body?

I'm writing an application that connect with a server using NSURLConnection. In the delegate method didreceiveresponse:, if the status code is 404, I cancel the connection and I would like to show a ...
6
votes
6answers
199 views

Is HTTP 404 appropriate for out of range page number on paged content?

I have a site that is mainly showing a paged list of content (articles, data element's, etc.), and I'm wondering about returning HTTP 404 when user navigates outside of the available list range (eg. ...
6
votes
1answer
478 views

Does this approach to using ELMaH with MVC smell?

I've been looking around for some approaches to using ELMaH with ASP.Net MVC so that I can use the custom error page for all exceptions including 404s. There is no shortage of questions asking how to ...
6
votes
3answers
980 views

HTML and CSS in URLs causing 404 errors (User Agent = Trident/4.0)

I've been getting some 404s with snippets of code (CSS, HTML and JavaScript) in the URL. As best as I can tell the user is progressing through the site just fine during their session - its an ...
6
votes
2answers
6k views

Custom 404 using Spring DispatcherServlet

I've set up web.xml as below. I also have an annotation-based controller, which takes in any URL pattern and then goes to the corresponding jsp (I've set that up in the -servlet.xml). However, If I ...
6
votes
2answers
4k views

Where do I catch and handle maxAllowedContentLength exceeded in IIS7?

I have an aspx page where I’m allowing a user to upload a file and I want to cap the max file upload size to be 10MB. IIS7, .NET 3.5. I have the following configured in my web.config file: ...
6
votes
5answers
287 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
1answer
274 views

.htaccess redirect to 404 page RewriteRule

Is there a way to enter a RewriteRule in the htaccess file to redirect to a 404 page if a certain folder/url path as been typed or reached? For example, if I want every user to be redirected to a 404 ...
5
votes
1answer
3k views

Other errors find my Error.cshtml, why doesn't 404 error find Error.cshtml?

I am tackling ASP.NET, MVC 3, web development, for the first time, all at the same time. Please bear with me, as I know this subject has been discussed heavily from different angles. I still have not ...
5
votes
2answers
1k views

404 Custom Error in IIS 6.0 and ASPX doesnt work

I've created a 404 error page called 404.aspx which works fantastic when I call it manually. But after setting the "custom error" in web.config and IIS 6.0. It doesn't work properly. for example, If ...
5
votes
4answers
2k views

404 Pages in ASP.NET MVC

I'm building my first ASP.NET MVC website, and I'm trying to figure out how to implement a 404 page. Should I create a controller called "404Controller?" If so, how do I then register this ...
5
votes
1answer
3k views

ASP.NET MVC Custom Error page (StatusCode 404 throws a 500)

I've got customErrors set in my web.config <customErrors mode="On" defaultRedirect="/Error/GeneralError"> <error statusCode="404" redirect="/Error/NotFound"/> </customErrors> ...
5
votes
1answer
2k 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 ...
4
votes
2answers
47 views

substituting an URL only if a file was found using mod_rewrite

here's how I do : the user types a URL the mod_rewrite handles URLs of the form : ^([^/\.]+)/?$ (the first segment in the path) and redirect them to the index page : struct.php?page=$1 in the ...
4
votes
1answer
189 views

Fun Animated CSS3 404 Page?

I came across the following 404 page in my travels yesterday: http://idzr.org/404 Is there a similar open-source script to achieve something similar? Obviously I cannot just pinch the JS/CSS from ...
4
votes
2answers
322 views

WordPress with phpMyAdmin - 404's everywhere

So I've been trying to make several changes to a custom WordPress theme which introduces an entire overhaul of the Dashboard. I keep finding little issues with the original theme that I need to fix ...
4
votes
1answer
450 views

Catching Mechanize 404 => Net::HTTPNotFound

I wrote simple function which handles fetching of the url: def tender_page_get url, agent sleep(rand(6)+2) begin return agent.get(url).parser rescue Errno::ETIMEDOUT, Timeout::Error, ...
4
votes
1answer
996 views

Custom 404 page when using IIS 7 Url Rewrite Module

I'm nearly done doing a major rewrite and redesign/restructuring of an existing website that gets a lot of traffic. I've been using the IIS 7 Url Rewrite Module to enable extension-less and ...
4
votes
3answers
4k views

Returning 404 Error ASP.NET MVC 3

I have tried the following 2 things to have a page return a 404 error: public ActionResult Index() { return new HttpStatusCodeResult(404); } public ActionResult NotFound() { return ...

1 2 3 4 5 18