为了防止我的category
页面出现重复,我想将那些/
以无结尾的重定向:
from - www.domain.com/category/
to - www.domain.com/category
我正在使用标准的网络表单。
请指教,
谢谢。
为了防止我的category
页面出现重复,我想将那些/
以无结尾的重定向:
from - www.domain.com/category/
to - www.domain.com/category
我正在使用标准的网络表单。
请指教,
谢谢。
在 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();
}
}