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)

219
votes
9answers
42k 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 ...
140
votes
3answers
48k views

How to redirect to a 404 in Rails?

I'd like to 'fake' a 404 page in Rails. In PHP, I would just send a header with the error code as such: header("HTTP/1.0 404 Not Found"); How is that done with Rails?
51
votes
9answers
46k 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
4answers
13k views

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

How can I Handler 404 errors without the framework throwing an Exception 500 error code?
19
votes
4answers
20k 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.
6
votes
5answers
7k views

404 header - HTTP 1.0 or 1.1?

So why does almost every example I can find (including this question form about a year ago) say that a 404 header should be HTTP/1.0 404 Not Found when we've really been using HTTP 1.1 for over a ...
23
votes
5answers
15k 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 = ...
36
votes
9answers
36k views

Custom ASP.NET MVC 404 Error Page

I am trying to make a custom HTTP 404 error page when someone types in a URL that doesn't invoke a valid action or controller in ASP.NET MVC. Instead of it displaying the generic Resource Not Found ...
50
votes
10answers
60k 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.
29
votes
6answers
14k 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: ...
10
votes
2answers
8k 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 ...
10
votes
4answers
8k views

urlencoded Forward slash is breaking URL

About the system I have URLs of this format in my project:- http://project_name/browse_by_exam/type/tutor_search/keyword/class/new_search/1/search_exam/0/search_subject/0 Where keyword/class pair ...
16
votes
8answers
11k 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 ...
37
votes
7answers
24k 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 ...
15
votes
1answer
13k 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 ...
11
votes
4answers
6k views

CakePHP 2.0 - How to make custom error pages?

I read that the AppError class is now for backwards compatibility and that Exceptions should be used instead. How does one go about creating custom error pages for things like 404 errors, or ...
9
votes
3answers
4k views

How can I catch a 404?

I have the following code: HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Method = "HEAD"; request.Credentials = MyCredentialCache; try { request.GetResponse(); } catch ...
8
votes
2answers
6k 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: ...
4
votes
4answers
11k views

Problem redirecting 403 Forbidden to 404 Not Found

The pertinent part of my .htaccess looks like this: Options -Indexes <FilesMatch include> Order allow,deny Deny from all </FilesMatch> RedirectMatch 404 ^/include(/.*)$ And it's ...
13
votes
2answers
2k views

include after PHP 404 header returning “Oops! This link appears to be broken.”

To make a long story short, I have dynamic pages on a website that display reviews. If there are no reviews associated with a particular city/county/area/etc the mysql query returns 0 rows which ...
11
votes
4answers
27k views

How to check if a URL exists or returns 404 with Java?

String urlString = "http://www.nbc.com/Heroes/novels/downloads/Heroes_novel_001.pdf"; URL url = new URL(urlString); if(/* Url does not return 404 */) { System.out.println("exists"); } else { ...
15
votes
9answers
8k views

How to callback a function on 404 in JSON ajax request with jQuery?

I want to make an Ajax request with response in JSON. So I made this Ajax request: $.ajax({ url: 'http://my_url', dataType: "json", success: function(data){ alert('success'); }, ...
5
votes
1answer
1k views

Requests to .htaccess should return 404 instead of 403

This is sort of a follow-up to Is there a way to force apache to return 404 instead of 403? which suggested RedirectMatch to 404 to accomplish this. It works perfectly fine for most of anything, ...
2
votes
1answer
8k views

ClassNotFoundException: com.sun.faces.config.ConfigureListener for JSF project using eclipse + tomcat

We are three people developing a JSF project and we've not been into JSF before. Oddly, with the same data checked out from SVN, one of the team members gets an 404 error everytime using Tomcat ...
55
votes
6answers
13k 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?
17
votes
5answers
17k 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 ...
13
votes
3answers
7k 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 ...
10
votes
3answers
3k 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 ...
9
votes
2answers
4k views

IIS7 custom 404 not showing

created a new IIS7 web site with Intergrated .net 4.0 app pool. URLs ending with .aspx do show custom 404 anything else gives the blue server error page "HTTP Error 404.0 - Not Found The resource you ...
8
votes
2answers
22k views

Enabling SSL with XAMPP

ive been following this guide as much as i could http://robsnotebook.com/xampp-ssl-encrypt-passwords however whenever i browse to a page starting with https the apache server replies 404 Object Not ...
5
votes
4answers
2k views

How can I create an error 404 in PHP?

My .htaccess redirects all requests to /word_here to /page.php?name=word_here. The PHP script then checks if the requested page is in its array of pages. If not, how can I simulate an error 404? I ...
3
votes
2answers
893 views

Getting 404 Error from Facebook Graph API

So I am getting this error and I have no clue why. When I run it on the server it's on, I get a 404 error with a simple request like this. $json = ...
0
votes
3answers
2k views

Trouble with Twitter API using Python

I'm having some trouble in this python code: import twitter twitter_search = twitter.Twitter(domain="search.twitter.com") trends = twitter_search.trends() The error (404 page not found) is right ...
0
votes
1answer
437 views

jQuery causing 404 errors in Webmaster Tools on /a directory

The Googlebot seems to be crawling up inside my jQuery and creating links ending in /a that don't exist and then reporting them as 404 errors. http://www.mySite.com/a The site validates green at ...
1
vote
2answers
225 views

Avoid server calls for loose resources that do not exist

I'm developing an applet application which is compiled on Java 1.5 (compatible with 1.5+). It contains some resource property files that are bundled together in the same jar, which lies parallel to ...
20
votes
4answers
15k 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, ...
59
votes
5answers
17k 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 ...
16
votes
4answers
38k 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 ...
4
votes
3answers
334 views

404 errors on /a folders in Webmaster Tools

In Google Webmaster Tools, under crawling errors, my number one 404 error is something called www.domain.com/a There is no such thing in my site and there is no link to it. What is wrong, what ...
11
votes
5answers
2k 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
17k views

How to solve a “HTTP Error 404.3 - Not Found” error?

Simple problem. I start up VS2008 and create a new WCF Service application. This will create a default application with a few test methods showing it works. I press CTRL+F5 and it does indeed work! ...
5
votes
1answer
5k views

Accessing original URL in IIS7 404 redirect page

I have an .aspx page as my custom 404 page on a site set up on IIS 7. I need to retrieve the original URL that the user was trying to access in order to do some processing on the 404 page. The trick ...
2
votes
4answers
3k views

mod rewrite to remove file extension, add trailing slash, remove www and redirect to 404 if no file/directory is available

I would like to create rewrite rules in my .htaccess file to do the following: When accessed via domain.com/abc.php: remove the file extension, append a trailing slash and load the abc.php file. url ...
2
votes
3answers
1k views

Download the contents of a URL in PHP even if it returns a 404

I want to download the contents of a URL using PHP, even if the HTTP response code is 404. file_get_contents will error out, and I wasn't able to find an answer using Google. How can I do this?
1
vote
3answers
500 views

Sitecore uses “302 found” to redirect users to my custom 404 page - is that legitimate?

This is more of a HTTP spec question than a Sitecore question. I have a 404 error page set up in Sitecore: <setting name="ItemNotFoundUrl" value="/404.aspx" /> So, when a user accesses a ...
1
vote
3answers
236 views

Make specific url response 404 error instead of 200 for spam bots

How to make my site's specific url (index.php?act=add) to response 404 error instead of 200 when spam bots try to access it ? I am not php programmer so may be it could be done somehow with derectives ...
1
vote
1answer
534 views

How to configure IIS to serve my 404 response with my custom content?

This question is related to this, hopefully better phrased. I would like to serve a custom 404 page from ASP.NET MVC. I have the route handler and all the infrastructure set up to ensure that ...
0
votes
2answers
2k views

WebClient.DownloadString(url) when this url returns a 404 page, how can i skip this?

I'm using WebClient.DownloadString(url) to download a web page, when a url a 404 web page it stops and doesn't work anymore. I want to skip these pages when I got this fault. if the url is 404 page, ...
0
votes
1answer
925 views

HTTP 404 - File not found Internet Explorer V6

I have ang 404 code that will redirect to the site if the page is not found. It working properly in firefox. However, when I use the Internet Explorer v6. the site will get and error mesaage: "HTTP ...
12
votes
1answer
2k views

Getting a 404 when using .NET 4 on IIS 6, with or without MVC

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: ...

1 2 3 4