如何将应用程序添加到 IIS 7 中的默认网站?
我的主应用程序位于 c:\inetpub\wwwroot\
。我创建了一个单独的应用程序,并将其放在 c:\inetpub\subapp
中。我想进行设置,以便如果我访问 http://www.mysite.com/subapp,它将运行我的子应用程序。
我进入 IIS,右键单击“默认网站”,然后单击“添加应用程序”。我设置了子应用程序的物理路径,并对其进行了测试,但出现错误,提示 “无效的应用程序路径”
我在这里做错了什么吗?我是否没有正确添加应用程序?
I have my main app at c:\inetpub\wwwroot\
. I've created a separate application, and put it at c:\inetpub\subapp
. I'd like to set it up so that if I visit http://www.mysite.com/subapp, it will run my subapp application.
I went into IIS, right-clicked on Default Web Site, and clicked Add Application. I set the physical path to my subapp, and tested it, but I got an error saying "Invalid application path"
Am I doing something wrong here, am I not adding the application correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放入
c:\inetpub\wwwroot\subapp\
中。在 IIS 管理控制台中,右键单击“默认网站”节点并选择“刷新”。您应该在下面的文件夹中看到您的网站。
然后,您可以右键单击它并选择
转换为应用程序
。Put it in
c:\inetpub\wwwroot\subapp\
.In IIS Management Console, right click the Default Web Site node and choose Refresh. You should see your site in a folder beneath there.
You can then right click on it and choose
Convert to Application
.选择“连接为...”并选择属于“IIS_IUSRS”组的用户。
然后再次“测试设置...” - 这应该有效。
Select "Connect as..." and select user that is part of "IIS_IUSRS" group.
Then "Test Settings..." again - that should work.