在斜杠后,IIS在域末重写数字

时间:2016-05-18 19:14:03

标签: asp.net iis url-rewriting url-redirection

我在ASP.NET中有一个脚本处理程序(.ashx),它接受一个整数的查询字符串参数ID。我想进一步缩短URL,例如:

电流:

https://domain.com/Link.ashx?ID=225 要么 https://www.domain.com/Link.ashx?ID=225

TO:

https://domain.com/225

我没有使用MVC,并怀疑我可以通过IIS URL重写来实现这一点。任何人都可以帮助支持这需要的配置吗?

http://domain.com/225会重定向到https://domain.com/Link.ashx?ID=225

1 个答案:

答案 0 :(得分:0)

这应该有效。

{{1}}

^ =以...开头 [0-9] =任何数字 + =重复1次或更多次 $ =以

结尾