Top "Http-status-code-404" questions

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

Getting 404 Not Found error while trying to use ErrorDocument

I know this thread has been talked a lot on the web and here, and I tried almost all the …

php apache .htaccess http-status-code-404
header('HTTP/1.0 404 Not Found'); not doing anything

I have a 404.php file in my site's main directory and I was using header('Location: 404.php'); for a while …

php header http-status-code-404
Django, creating a custom 500/404 error page

Following the tutorial found here exactly, I cannot create a custom 500 or 404 error page. If I do type in a …

python django django-templates http-status-code-404
Tomcat started in Eclipse but unable to connect to http://localhost:8085/

I configured Tomcat 6.0.24 in Eclipse on port 8085 and started successfully with log as below: Feb 17, 2010 4:24:31 PM org.apache.catalina.core.…

eclipse tomcat http-status-code-404
Routing for 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 …

asp.net asp.net-mvc asp.net-mvc-routing http-status-code-404 custom-error-pages
Why won't my PHP app send a 404 error?

if (strstr($_SERVER['REQUEST_URI'],'index.php')) { header('HTTP/1.0 404 Not Found'); } Why wont this work? I get a blank page.

php header http-status-code-404
How can I properly handle 404 in ASP.NET MVC?

I am using RC2 Using URL Routing: routes.MapRoute( "Error", "{*url}", new { controller = "Errors", action = "NotFound" } // 404s ); The above seems …

asp.net-mvc http-status-code-404
CodeIgniter 404 Page Not Found, but why?

I am using CodeIgniter for two applications (a public and an admin app). The important elements of the document structure …

php codeigniter routes http-status-code-404
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 …

java url http-status-code-404
Servlet returns "HTTP Status 404 The requested resource (/servlet) is not available"

I have an HTML form in a JSP file in my WebContent/jsps folder. I have a servlet class servlet.…

html forms jsp servlets http-status-code-404