简体   繁体   中英

IIS 10 on Windows Server 2016 not running my ASP.NET MVC website

I just bought a new Cloud based Virtual machine with Windows server 2016 installed. I also make sure IIS 10 has .NET Framework 4.6 and ASP.NET 4.6 installed.

在此处输入图片说明

My ASP.NET MVC application targets .NET 4.5 and is successfully published to the 'Default Web Site' on this server using Web deploy. (You can see all the asp.net mvc published files here)

在此处输入图片说明

'Default Web Site' uses 'DefaultAppPool' which has a v4.0 .NET CLR Version.

But when I open the web page in my browser, I received a '403 - Forbidden: Access is denied.' error. I did my research, to me it looks like the IIS never tried to open it as a ASP.NET MVC application. It simply tries to find a physical file with the same name as 'controller/Action'.html and of course it couldn't find it. Solutions I have tried with:

  1. There's another post mentioning the 'UrlRoutingModule-4.0' in IIS Modules configuration. In my case, the routing module is not there for some reason. I added it, but nothing changes. Furthermore, every time I republish the website from VS, the module disappears after the deployment succeeds.

  2. I also tried adding <modules runAllManagedModulesForAllRequests="true"/> to my webconfig file, no luck either.

  3. Run aspnet_regiis -ir on the server. It says the command can't be run on this operating system but still run it anyway. However, the problem is still there.

I finally got it work!!!

The solution is go to control panel and then click 'Turn windows feature on and off', then go to 'Server Roles' -> 'Web Server (IIS)' -> 'Web Server' -> 'Application Development', here you need to make sure both '.NET Extensability 4.6' and 'ASP.NET 4.6' are installed.

Apparently when IIS 10 is installed, these will not be installed by default. Thanks guys for all the help.

the reason is asp.net mvc isn't installed completely on the machine.

please read the instruction of install IIS and ASP.NET Modules

Installing IIS and ASP.NET Modules

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM