针对同一站点 IIS 7 的两个子域的不同默认文档

发布于 2024-09-19 15:49:33 字数 389 浏览 6 评论 0 原文

我们对同一站点有两个子域,我们希望根据访问的子域,初始页面会有所不同。但在 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)

We have two subdomains for the same site, we would like that depending on the visited subdomain the initial page varies. But in IIS the default document setting is based on the web.config so...

We know that we could use the http:/subdomain/page.aspx but its a requirement that we use only http:/subdomain in the links

Desired example:

  • Click in link http:/subdomain1.web.com --> http:/subdomain1.web.com/page1.aspx
    (our_website/page1.aspx)
  • Click in link http:/subdomain2.web.com --> http:/subdomain2.web.com/page2.aspx
    (our_website/page2.aspx)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隔岸观火 2024-09-26 15:49:33

只需使用相同的默认文档并根据请求的域在 Page_Load 中编写重定向即可。

Just use the same default document and write a redirect in Page_Load based on which domain is requested.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文