Quantcast
Channel: Adobe Community: Message List - ColdFusion
Viewing all articles
Browse latest Browse all 21760

ColdFusion 2016 in IIS 10: HTTP Error 404.17 - Not Found

$
0
0

I have installed ColdFusion 2016 in IIS 10 and when I browse to http://localhost/mysite/ I get HTTP Error 404.17 - Not Found but when I browse to http://localhost/mysite/index.cfm it works just fine. It seems there is some confusion about the default documents being served as static files rather than dynamic files. This is supported by reading further details in the IIS error message:

 

HTTP Error 404.17 - Not Found

The requested content appears to be script and will not be served by the static file handler.

 

Most likely causes:

  • The request matched a wildcard mime map. The request is mapped to the static file handler. If there were different pre-conditions, the request will map to a different handler.

Things you can try:

  • If you want to serve this content as a static file, add an explicit MIME map.

 

Detailed Error Information:

Module   StaticFileModule
Notification   ExecuteRequestHandler
Handler   StaticFile
Error Code   0x80070032

 

 

Requested URL   http://localhost:80/mysite/index.cfm
Physical Path   C:\inetpub\wwwroot\mysite\index.cfm
Logon Method   Anonymous
Logon User   Anonymous

 

 

It seems that IIS knows that I want to serve index.cfm as the default document, but it's treating it as a static file rather than a dynamic file. Wondering if anyone has any ideas on how to fix this? Thanks.


Viewing all articles
Browse latest Browse all 21760

Trending Articles