针对同一站点 IIS 7 的两个子域的不同默认文档
我们对同一站点有两个子域,我们希望根据访问的子域,初始页面会有所不同。但在 IIS 中,默认文档设置基于 web.config,所以...
我们知道我们可以使用 http:/subdomain/page.aspx,但要求我们在链接中仅使用 http:/subdomain
所需的示例:
- 点击链接http://subdomain1.web.com --> http://subdomain1.web.com/page1.aspx (our_website/page1.aspx)
- 单击链接 http://subdomain2.web.com --> http://subdomain2.web.com/page2.aspx (我们的网站/page2.aspx)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用相同的默认文档并根据请求的域在 Page_Load 中编写重定向即可。
Just use the same default document and write a redirect in Page_Load based on which domain is requested.