2

我将如何从网站中的每个 .aspx 网页中删除 .aspx?以下工作,但仅适用于网站的根目录,并且定义长文件夹结构效率低下且混乱。

void RegisterRoutes(RouteCollection routes)
{
    routes.MapPageRoute("RemASPx", "{file}", "~/{file}.aspx");
}

void Application_Start(object sender, EventArgs e) 
{
    // Code that runs on application startup
    RegisterRoutes(RouteTable.Routes);
}

下面的作品没有斜杠,但是我将如何强制它有一个斜杠,因为没有什么可以跟随全能的 routeURL?

routes.MapPageRoute("RemASPx", "{*file}", "~/{file}.aspx");
4

1 回答 1

3

保留此路由设置:

void RegisterRoutes(RouteCollection routes)
{
    routes.MapPageRoute("RemoveASPx", "{*file}", "~/{file}.aspx");
}

void Application_Start(object sender, EventArgs e) 
{
    RegisterRoutes(RouteTable.Routes);
}

添加此重写:

protected void Application_BeginRequest(object sender, EventArgs e)
{
    string url = HttpContext.Current.Request.Url.AbsolutePath;
    if (string.IsNullOrEmpty(url) ||
        System.IO.Directory.Exists(Server.MapPath(url)))
        return;

    if (url.EndsWith("/"))
    {
        Response.Clear();
        Response.Status = "301 Moved Permanently";
        Response.AddHeader("Location", url.Substring(0, url.Length - 1));
        Response.End();
    }
}

上面的代码块:

  1. 出于不言自明的原因检查 url 是否为空或为空
  2. 检查 URL 是否为目录,因为您不想重写目录(如果应用程序默认状态中有任何内容,则会导致重定向循环,因为在目录中添加了尾部斜杠)
  3. 检查 URL 是否以斜杠结尾,因此是否需要将其删除
  4. 使用了 301 响应(最合适的响应——尤其是 SEO);添加的标头导致重定向
于 2013-04-21T11:19:46.563 回答