1

为了防止我的category页面出现重复,我想将那些/以无结尾的重定向:

from - www.domain.com/category/
to   - www.domain.com/category

我正在使用标准的网络表单。

请指教,

谢谢。

4

1 回答 1

0

在 global.asax 文件中添加以下代码:

protected void Application_BeginRequest(object sender, EventArgs e)
{
    if (HttpContext.Current.Request.Url.ToString().ToLower().EndsWith("/category/"))
    {
        string sNewPage = Request.Url.ToString().ToLower().TrimEnd('/');

        Response.Clear();
        Response.Status = "301 Moved Permanently";
        Response.AddHeader("Location", sNewPage);
        Response.End();
    }
}
于 2013-11-13T13:45:03.963 回答