NET IIS7.5 When you create a site, if you find the following error, and the default site access is not a problem,
You can try, go to the handler map right-click to revert to the parent, there may be unexpected surprises.
This is how I solve the problem.
The key to this problem is that your site has no extensions that you can handle.
such as: *.asp, *.html, *.aspx, etc.
Error summary HTTP error 404.4-not found the resource you are looking for does not have a handler associated with it. Detailed error information
Module |
IIS Web Core |
Notice |
Maprequesthandler |
Processing program |
Not yet determined |
Error code |
0x80070002 |
The requested URL |
Http://localhost:80/M/index.htm |
Physical path |
D:\FitFind\Mobile\index.htm |
Login method |
Anonymous |
Logged in user |
Anonymous |
The most probable cause:
- The file name extension of the requested URL does not have a configuration handler to handle requests on the WEB server.
Actions you can try:
- If the file name extension does not have a handler associated with it, add a handler mapping for the extension.
- Verify that the handler associated with the file name extension is installed and configured correctly.
- Create a trace rule to track failed requests for this HTTP status code. For more information about creating a trace rule for a failed request, click here .
Links and more information This error indicates that the WEB server failed to recognize the file name extension of the requested resource. A module handler is not configured for this extension on the WEB server. If the WEB server requires a file name extension that is rejected, add the appropriate handler for the file name extension.
See more information?