Global.asax的Application_BeginRequest实现url重写无后缀的
在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);
}
```
编程语言
- Global.asax的Application_BeginRequest实现url重写无后缀的
- 各种存储过程使用指南
- mysql分页时offset过大的Sql优化经验分享
- MySQL查询结果复制到新表的方法(更新、插入)
- jQuery多文件异步上传带进度条实例代码
- PHP简单选择排序算法实例
- 对比MySQL中int、char以及varchar的性能
- 浅析get与post的一些特殊情况
- vue2.0 循环遍历加载不同图片的方法
- php中文乱码问题的终极解决方案汇总
- ASP.NET对HTML页面元素进行权限控制(一)
- asp中将有双引号标题入库的方法
- Git 2.27.0详细安装步骤详解
- PHP中生成UUID自定义函数分享
- laypage.js分页插件使用方法详解
- 基于substring()和substr()的使用以及区别(实例讲解