Questions tagged [http-status-code-404]

The HTTP status code 404 or "Not Found" indicates the server could not find the requested file or resource.

A 404 often means that the URL requested is invalid or points to a file that no longer exists (e.g. has been moved or deleted). It can also mean that web service method or other similar resource does not exist.

Many web servers can be configured to display a specific error page when this occurs which allows users to continue navigating in a manner consistent with the design of the website.

See RFC2616 for reference.

Microsoft's Internet Information Services (IIS) versions 7, 7.5, and 8.0 provide additional sub-status values for various types of 404 response statuses. These are not recognized as standard status codes, but may be relevant for IIS-hosted applications.

Microsoft Sub-Status Codes:

404.0 – Not found.
404.1 – Site Not Found.
404.2 – ISAPI or CGI restriction.
404.3 – MIME type restriction.
404.4 – No handler configured.
404.5 – Denied by request filtering configuration.
404.6 – Verb denied.
404.7 – File extension denied.
404.8 – Hidden namespace.
404.9 – File attribute hidden.
404.10 – Request header too long.
404.11 – Request contains double escape sequence.
404.12 – Request contains high-bit characters.
404.13 – Content length too large.
404.14 – Request URL too long.
404.15 – Query string too long.
404.16 – DAV request sent to the static file handler.
404.17 – Dynamic content mapped to the static file handler via a wildcard MIME mapping.
404.18 – Query string sequence denied.
404.19 – Denied by filtering rule.
404.20 – Too Many URL Segments.

6856 questions
2
votes
1 answer

Child page of parent page with same name as custom post type causes 404

I've searched extensively on this issue and have found others with similar problems, but no solutions that work in my case. The situation is this: * I have created a custom post type with the slug 'events'. * I have created a page with the slug…
2
votes
2 answers

404 Not Found bundles/WebFormsJs after publishing from VS2012

I am having issues when publishing my web app to our server with some resources not being loaded. To rule out any possible mistake by myself I tested by creating a totally new Web Application from the template: Visual C#->Web->ASP.NET Web Forms…
2
votes
0 answers

404 error encountered when requesting a classic asp page in MVC3

I am converting a classic asp application to ASP.NET MVC3. I have following route mappings in the global.asax: routes.MapRoute("LogOn", "Scripts/Logon", New With {.controller = "Account", .action = "Logon"}) routes.MapRoute("LogOnASP",…
2
votes
2 answers

Getting 301 instead of 404 when adding trailing slash to URL

I've been working for hours in this and can't find information about it. Well yes, there is information, but I can only find separate solutions that don't work put toguether. I'm trying to start from this: RewriteCond %{REQUEST_URI}…
2
votes
1 answer

no user matches the given query while using username as an argument

Till now i have been using userid's (pk) as an argument in the profile urls for my application. Recently i decided to use the username instead of the user id's So i changed the following : Urls.py # This was what i was using…
Amyth
  • 32,527
  • 26
  • 93
  • 135
2
votes
0 answers

Excel web query 404 not found for site that exists

I am trying to use Excel 2010 to get web data using the Get External Data > From Web Excel is able to download data from (just checking the top left box to get the whole page) http://accuscore.com/fantasy-sports/nfl-fantasy-sports/ but when you…
mattyd
  • 1,643
  • 2
  • 17
  • 26
2
votes
1 answer

GWT(GXT 2.2.2) + Jetty = Ok. Glassfish = 404

I installed: JDK 1.7.0_10, GWT 2.4, GXT 2.2.5, App Engine 1.7.0, Eclipse Indigo Service Release 2, Glassfish-3.1.2.2-windows-ml, WinXP SP3. I created a new “Web Application project”. Run->Run As… -> Web application:…
Sergey Chepurnov
  • 1,397
  • 14
  • 23
2
votes
1 answer

Powershell: Downloadfile 404 but site exists

I'm having a little problem which looks very simple... but I just don't get it! I try to download the website content of: http://cspsp.gshi.org/ (if you try to access it via www.cspsp.gshi.org you get to the wrong page....) For this I do it like…
kon
  • 527
  • 4
  • 9
2
votes
4 answers

How to Skip HttpWebResponse 404

Hi i have a program thats looking on some pages for (int i=1; i < 1000; i++) { string id = i.ToString(); string url_source = get_url_source("http://mysite.com/"+id); } and a method public static string get_url_source(string url) { …
2
votes
2 answers

Simplest Console Hosted WCF Service generates a 404 when browse to it

I have the very simplest Console based host for a simple WCF service. The app config for the service is:
Sam Gentile
  • 1,259
  • 7
  • 22
  • 28
2
votes
1 answer

Nivo Slider for wordpress not loading images - server responds with 404 error

I have the Nivo slider for wordpress install on a website I am working on. The plugin worked great until recently when it suddenly stopped working after I had made a series of seemly unrelated changes to the custom theme. The slider shows the…
2
votes
1 answer

PUT request from Backbone to Slim REST service causes 404 Not Found

I have a backbone script that calls a Slim REST service. GET requests are working fine, PUT requests are returning 404 Not Found. Note: this was working until my code was recently moved to a different server (and it works locally), so I'm guessing…
james28x
  • 47
  • 1
  • 8
2
votes
2 answers

URL with encoded slashes goes to 404

I use user-provided content to generate URLs. One of my URL had for title Kikar Habusiness - émission du 2/12/12, which converted to the URL /url/Kikar+Habusiness+-+émission+du+2%2F12%2F12. It goes to a 404. If I remove the %2F from the URL it works…
Nathan H
  • 48,033
  • 60
  • 165
  • 247
2
votes
4 answers

Error 404 upon Start up of Struts2 in tomcat

I was making this hello world application using Struts2 and I've encountered an HTTP Status 404 - /HelloStruts2/ Here is my web.xml
user962206
  • 15,637
  • 61
  • 177
  • 270
2
votes
0 answers

Re-forking a deleted fork on GitHub

A few days ago, I deleted a fork on GitHub. Now I can't re-fork the same project, when I do it, GitHub show me a 404 error. When I fork, GitHub redirect me to a page like "https://github.com/-1" as if the project is still available…
nan
  • 73
  • 4