Global.asax的Application_BeginRequest实现url重写无后缀的

网络编程 2025-03-24 05:43www.168986.cn编程入门

在Global.asax文件中,我们使用C语言编写脚本。在Application_BeginRequest事件处理器中,我们首先获取当前请求的原始URL。

```csharp

void Application_BeginRequest(object sender, EventArgs e)

{

string oldUrl = System.Web.HttpContext.Current.Request.RawUrl; //获取初始url

}

```

```csharp

Regex reg = new Regex(@"^\/\d+\.html");

if (reg.IsMatch(oldUrl))

{

string id = reg.Match(oldUrl).ToString().Substring(1, reg.Match(oldUrl).ToString().LastIndexOf(".") - 1);

Context.RewritePath("~/Index.aspx?id=" + id);

}

```

```csharp

Regex reg1 = new Regex(@"^\/\d+$");

if (reg1.IsMatch(oldUrl))

{

string id = reg1.Match(oldUrl).ToString();

Context.RewritePath("~/Index.aspx?id=" + id);

}

```

```csharp

Regex reg3 = new Regex(@"^\/index\/\d+$");

if (reg3.IsMatch(oldUrl))

{

string id = reg3.Match(oldUrl).ToString().Substring(7);

Context.RewritePath("~/Index.aspx?id=" + id);

}

```

上一篇:各种存储过程使用指南 下一篇:没有了

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by