将静态子域添加到网站的推荐方法是什么?

发布于 2024-09-01 09:33:11 字数 301 浏览 5 评论 0原文

我想创建一些静态子域,例如:

mycategory.mydomain.com

在一个相当小的网站中,希望它指向该文件夹:

mydomain.com/mycategory

不会在浏览器地址栏中显示此类重定向。

实现它的最简单方法是什么?我可以在 IIS 设置、asp.net、C# 代码等中完成此操作,

我想有更好的方法,然后在 IIS 中创建一些单独的站点 - 每个子域一个。

I would like to create a few static subdomains like:

mycategory.mydomain.com

in a rather small website and would like it to point to the folder:

mydomain.com/mycategory

without showing such redirection in browser address bar.

What is an easiest way to achieve it? I can do it in either IIS settings, asp.net, C# code, etc

I guess there are better ways then creating a few separate Sites in IIS - one for each subdomain.

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

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

发布评论

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

评论(2

妄司 2024-09-08 09:33:11

在 IIS 中设置多个网站,并为每个网站分配一个唯一的主机头(mycategory1.mydomain.com、mycategory2.mydomain.com 等)。将每个网站指向其目标文件夹。

有关主机标头的详细信息:

http://www.google.com/search?q= iis+主机+标头

Setup multiple websites in IIS and assign a unique hostheader to each one of them (mycategory1.mydomain.com, mycategory2.mydomain.com, etc). Point each website to its destination folder.

More about hostheaders:

http://www.google.com/search?q=iis+host+headers

救星 2024-09-08 09:33:11

IIS 7 比任何以前的版本都更好地支持 URL 重写, http://learn.iis.net/page.aspx/460/using-the-url-rewrite-module/

但也有第三方解决方案。

就像 @adrianbanks 建议的那样,serverfault.com 是讨论此类仅配置问题的更好地方:)

IIS 7 supports URL rewrite better than any previous versions, http://learn.iis.net/page.aspx/460/using-the-url-rewrite-module/

But there are also third party solution.

Like @adrianbanks suggested, serverfault.com is a better place to discuss such configuration only questions :)

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