IIS 中的子网站 - ASP.NET
我在 IIS 中有一个 asp.net 网站,可在互联网上使用 www.xyz.com,现在我被要求准备另一个网站,可通过 www.xyz.com/abc 访问。
为此,我需要在 IIS 中的网站文件夹 XYZ 下创建一个虚拟目录吗?或者有没有其他方法可以实现这一点。
I have a asp.net website in the IIS which is available on internet as www.xyz.com now I have been asked to prepare another website which will be accessed via www.xyz.com/abc.
For this, do I need to create a virtual directory under the website folder XYZ in IIS? or is there any other way to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将该子目录设为 IIS 应用程序。
请记住,像您这样的内部应用程序将从最顶层的 Web 配置继承配置,因此请小心清除子应用程序中不需要的那些设置。
You need to make the subdirectory an IIS application.
Keep in mind that inner apps like yours will be inheriting configurations from the top-most web configuration, so be careful clearing those settings you don't want in the child applications.
是的,虚拟目录可以工作,但请注意,如果 abc 是一个成熟的应用程序,您必须将其添加为应用程序而不是虚拟目录
Yes a virtual directory will work, however note that if abc is a full-blown app you will have to add it as an application not as a virtual directory