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.

MIME types missing in IIS 7 for ASP.NET - 404.17

When getting a newly configured Windows 7 box, I noticed that ASP.NET was turned off by default. So was classical …

asp.net iis http-status-code-404 configure
Nginx - Customizing 404 page

Nginx+PHP (on fastCGI) works great for me. When I enter a path to a PHP file which doesn't exist, …

php nginx http-status-code-404
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/…

.htaccess url-rewriting http-status-code-404 url-encoding
using javascript to detect whether the url exists before display in iframe

I'm using javascript to pass a dynamic url to iframe src. but sometimes the url does not exist, how could …

javascript iframe http-status-code-404
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 …

asp.net-mvc error-handling http-status-code-404
Vue-router redirect on page not found (404)

I'm trying to redirect to 404.html on page not found using the router.beforeEach global hook, without much success (using …

http-status-code-404 vue.js vue-router
How to 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.…

asp.net-mvc routes http-status-code-404
Django Static files 404

I can't get my static files to come up. I've tried various settings and directory configurations and so on, but …

django static http-status-code-404
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(); } …

c# .net exception-handling error-handling http-status-code-404
How to return 404 response status in Spring Boot @ResponseBody - method return type is Response?

I'm using Spring Boot with @ResponseBody based approach like the following: @RequestMapping(value = VIDEO_DATA_PATH, method = RequestMethod.GET) public @…

java spring http-status-code-404 retrofit