ASP.NET MVC Url Masking / Rewriting

时间:2010-05-06 14:17:25

标签: asp.net-mvc url-rewriting cross-domain

我们假设我有一个 subdomain.domain.com 的网址。 ASP.NET MVC中是否有一种方法可以使用 otherdomain.com/gotothesubdomain 来引导您进入 subdomain.domain.com ?我知道一个简单的重定向可以做到,但我希望网址保持为 otherdomain.com/gotothesubdomain

非常感谢任何建议,谢谢!

1 个答案:

答案 0 :(得分:0)

假设您有2个单独的应用程序,那么您需要将该页面作为字符串抓取然后呈现它,这里有一些潜在的起点 - WebRequest/WebResponse,mvc源代码中的Html.RenderPartial或者您可以拥有查看JoeyB's文章。

查看解释如何在一个mvc应用程序中拥有多个子域的Luke Sampsons文章可能会有所帮助,可能会对您的方案有所帮助吗?