IIS7 上的多个站点位于相同的 URL 和端口但位于不同的目录中
我想在同一个 IIS 上托管多个应用程序。问题是我需要使用与 www.example.com 相同的 URL,但目录不同。另外端口需要是80,或者至少对最终用户透明,所以我想要像他这样的东西:
www.example.com/app1
www.example.com/app2
问题是IIS不允许我创建 2 个具有相同域和相同端口的站点,如果可能的话我不想使用子域。
这两个应用程序不应位于同一站点上,因为它们是具有不同维护计划的独立应用程序。
有办法做到这一点吗?或者我必须使用子域吗?
I would like to host multiple applications on the same IIS. The problem is I need to use the same URL like www.example.com, but different directories. Also the port needs to be 80, or at least transparent to the end user, so I'd like to have something like his:
www.example.com/app1
www.example.com/app2
The problem is IIS does not let me create 2 sites with the same domain and the same port and I don't wanna use subdomains if possible.
Both apps should not be on the same site since they are separate applications with different mantainance schedules.
Is there a way to do this? Or do I have to use subdomains?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您在
inetpub/wwwroot
目录中有 app1 和 app2 目录,并将它们都配置为应用程序,那么它应该具有您想要的效果。希望这有帮助...
If you have the app1 and app2 directories in the
inetpub/wwwroot
directory, and configure both of them as applications, it should have the effect you desire.Hope this helps...
您是否考虑过使用虚拟目录?这些目录可以使用不同的应用程序池,因此具有不同的维护计划。
Have you considered using Virtual Directories? These directories could use different application pools and thus have different maintenence schedules.
除了上述建议之外,您唯一的选择是使用 URL 重写来让 IIS 转换传入的 URL。
http://learn.iis.net/page。 aspx/460/using-the-url-rewrite-module/
Your only other option other than the recommendations above is to use URL rewriting to have IIS translate the incoming URLs.
http://learn.iis.net/page.aspx/460/using-the-url-rewrite-module/
这个问题太老了,但我遇到了同样的问题。
Anirudh Ramanathan 的回答是正确的。
解决方案是在不同的应用程序池中添加新应用程序。
直接来自微软的文档:
完整文档此处
注意:“单击测试设置以验证您为应用程序指定的设置”可能会产生错误。根据其他答案,这似乎是一个错误。我忽略了这个警报,一切都运行良好。
The question is too old, but I run in the same issue.
Anirudh Ramanathan's answer is correct.
The solution is to add new Application in different ApplicationPools.
Right from Microsoft's documentation:
Complete documentation here
N.B.: "click Test Settings to verify the settings that you specified for the application" may produce an error. According to other SO answers, it seems to be a bug. I ignore this alert and everything run well.