Url Rewrite - IIS中的正则表达式

时间:2015-12-12 16:48:44

标签: regex iis iis-7 iis-7.5

我有一个网址 www.example.com/test.aspx?n=quick-brown-fox-jumps-over-the--lazy-dog-2890

我想将其显示为
www.example.com/test/quick-brown-fox-jumps-over-the--lazy-dog/2890

使用URL重写正则表达式

请帮助

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine On
RewriteRule /test/(.+)/(.+) /test.aspx?n=$1-$2 [QSA]