0

在尝试更改我的 MVC 4 Web 应用程序的项目 url 时,我遇到了一些奇怪的错误。所以首先我做了什么:

将项目网址从

    http://localhost:54300 to http://192.168.1.26:54300

将我的网站的 bindingInformation 更改为

    *:54300:192.168.1.25:54300 

添加地址:

netsh http add urlacl url=http://192.168.1.26:54300/ user=everyone

所以当我试图从 Visual Studio 运行我的网络应用程序时,我得到了错误

"Unable to launch the ISS Express Web Server"

从 Webmatrix 运行我的 Web 应用程序或从命令行启动 IIS express 时,一切正常。我试过的:重新安装visual studio,但没有效果。

有什么建议么?

4

1 回答 1

1

Start your project using the Visual Studio Development Server and see if it works. If it does then it means its a configuration problem. Close Visual Studio, back up or rename the %USER_HOME%\Documents\IISExpress folder. Re start Visual Studio again and open your application. Right Click your application and select Use IISExpress.

Hope it helps.

于 2013-11-15T14:42:58.603 回答