使用 ASP.NET MVC 进行 Windows Azure 子域重新路由
我遇到以下问题,假设我使用 *.mydomain.com 等域创建 A 记录,我的主域有一个 CNAME 记录指向我的 Windows Azure 给定域名。所以它如下:
一条记录:*.mydomain.com 127.0.0.1 CNAME 记录:mydomain.com myservice.cloudapp.net
现在我希望能够在我的应用程序中控制自定义子域,以便用户可以创建自己的子域。这个子域显然不会真正存在,但我将使用 ASP.NET MVC 自己捕获和处理路由。我见过使用 .htcaccess 完成此操作,但还没有见过使用 ASP.NET MVC 或 Windows Azure 完成此操作...
这可能吗?
I have the following issue, lets say I create an A record with my domain like *.mydomain.com, my main domain has a CNAME record pointing to my Windows Azure given domain name. So it goes as follows:
A record: *.mydomain.com 127.0.0.1
CNAME record: mydomain.com myservice.cloudapp.net
Now I want the ability to control custom subdomain in my application, so the user for example can create their own subdomain. This subdomain will obviously not really exist, but I will be capturing and handling the routing on my own using ASP.NET MVC. I have seen this done using .htcaccess, but I have not seen it done using ASP.NET MVC or Windows Azure...
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的 - 有一个很好的 博客条目。
Yes it is possible - there is an excellent blog entry on this issue.