Asp.net 3.5 Sp1 子域路由?
我想知道是否有一种方法可以在 Asp.net 3.5 路由中引入子域
我发现的所有内容都是这样 http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx
但我一直在寻找更复杂的东西来允许执行通配符子域
有帮助吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使使用该样本,也应该没问题。 在这种情况下,只需向您的 DNS“*.yourdomain”添加通配符,并使用交换机中的“default”语句来处理通配符。
换句话说,将 Global.asax 的示例更改为:
并且不要忘记:向您的 DNS 添加通配符。 但是,不可能在本地主机上测试子域。
Should be no problem, even with that sample. In this case, just add a wildcard to your DNS "*.yourdomain" and use the 'default' statement from the switch to handle wildcards.
In other words, change the sample for the Global.asax to something like:
And don't forget: add a wildcard to your DNS. It shall not be possible to test subdomains on localhost, though.