将静态子域添加到网站的推荐方法是什么?
我想创建一些静态子域,例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 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
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 :)