Asp.Net MVC 中的 301 重定向

发布于 2024-10-08 09:57:34 字数 435 浏览 3 评论 0原文

我有一个多元文化 MVC2 网站。 实际上我的主页可以通过以下路径访问:

http://mydomain.com
http://mydomain.com/
http://mydomain.com/en
http://mydomain.com/en/
http://mydomain.com/en/home
http://mydomain.com/en/home/

我想要的是上述所有路径都进行 301 重定向到以下路径:

http://mydomain.com/en

这样我就不必在不同的 url 之间共享 pagerank。

请注意,en 字符串是动态的,用于设置网站的区域性。

我是 Asp.Net MVC 的新手,有人可以发布一些代码来做到这一点吗? 谢谢

I have an Multiculture MVC2 website.
Actually my home page can be accessed with the following paths:

http://mydomain.com
http://mydomain.com/
http://mydomain.com/en
http://mydomain.com/en/
http://mydomain.com/en/home
http://mydomain.com/en/home/

What I want is that all the above paths make a 301 redirect to the following:

http://mydomain.com/en

so that I don't have to share pagerank between different urls.

Note that the en string is dynamic and sets the culture for the website.

I'm new in Asp.Net MVC, someone could post some code to do that?
Thanks

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

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

发布评论

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

评论(2

坚持沉默 2024-10-15 09:57:34

您可以创建自定义操作结果。请参阅此线程: http://forums.asp.net/p/1337938/2700733.aspx

You can create a custom action result. See this thread: http://forums.asp.net/p/1337938/2700733.aspx

笛声青案梦长安 2024-10-15 09:57:34

像这样的东西

public class PermanentRedirectResult : ViewResult
{
    public string Url { get; set; }

    public PermanentRedirectResult(string url)
    {
        if (string.IsNullOrEmpty(url))
            throw new ArgumentException("url is null or empty", url);
        this.Url = url;
    }

    public override void ExecuteResult(ControllerContext context)
    {
      if (context == null)
        throw new ArgumentNullException("context");
      context.HttpContext.Response.StatusCode = 301;
      context.HttpContext.Response.RedirectLocation = Url;
      context.HttpContext.Response.End();
    }
}

并用这个来称呼它

返回新的
PermanentRedirectResult("/myurl");

something like this

public class PermanentRedirectResult : ViewResult
{
    public string Url { get; set; }

    public PermanentRedirectResult(string url)
    {
        if (string.IsNullOrEmpty(url))
            throw new ArgumentException("url is null or empty", url);
        this.Url = url;
    }

    public override void ExecuteResult(ControllerContext context)
    {
      if (context == null)
        throw new ArgumentNullException("context");
      context.HttpContext.Response.StatusCode = 301;
      context.HttpContext.Response.RedirectLocation = Url;
      context.HttpContext.Response.End();
    }
}

and call it with this

return new
PermanentRedirectResult("/myurl");

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