我在IIS Rewrite中创建友好的URL模式
我的普通网址看起来像这样
http://localhost/orgprofile/financial.aspx?name=Test
最初我选择了IIS中可用的选项
友好网址
http://localhost/orgprofile/financial/test
使用模式
^ orgprofile /金融/([^ /] +)/?$
现在我只想将友好的URL更改为
http://localhost/test/financial
首先是查询字符串然后附加财务
我可以使用这个友好的网址
http://localhost/financial/test
^金融/([^ /] +)/?$
但是无法让它发挥作用
http://localhost/test/financial
,比如
([^ /] +)/?$ / ^金融
答案 0 :(得分:0)
$表示查询字符串的结尾 - 您需要在结尾处保留该字符串。
尝试:
^([^/]+)/financial/?$