windows HTTP错误404.3 - Not Found

dldeef67  于 2023-06-30  发布在  Windows
关注(0)|答案(1)|浏览(129)

我是IIS的新手,我有asp web应用程序,我必须将它们添加到默认网站,当我运行默认网站时,它很好,但当我运行应用程序时,我收到错误:

HTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension
configuration. If the page is a script, add a handler. If the file 
should be downloaded, add a MIME map.

在服务器角色中,我有:

在服务器功能我有:

我尝试注册aspnet组件:C:\Windows\Microsoft.NET\Framework64\v4.0.30319> .\aspnet_regiis.exe -ir
但我收到了这条信息

This option is not supported on this version of the operating system. 
Administrators should instead install/uninstall A
SP.NET 4.5 with IIS8 using the Turn Windows Features On/Off dialog

我也试过这个:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319> .\ServiceModelReg.exe -iaC:\Windows\Microsoft.NET\Framework64\v4.0.30319> .\ServiceModelReg.exe -ir,但我收到以下消息:

[Error]This tool is not supported on this version of Windows.
Administrators should instead install/uninstall Windows Communication
Foundation features using the 'Turn Windows Features On/Off' dialog....

我有Windows Server 2012和这个IIS版本:

我不能删除或卸载IIS,因为这是我们的客户服务器,他们使用默认网站为他们的应用程序和我的应用程序必须在该网站上运行。
我该怎么办?我希望有人能帮帮我。
最好的问候

xriantvc

xriantvc1#

404.3表示存在MIME类型限制,这意味着IIS服务器将不会处理您尝试托管的任何类型的文件。处理程序必须在 Handler Mappings 下定义(应该在您的网站下)。

单击 * 添加模块Map *,添加文件扩展名的类型。

相关问题