|
|
Browse by Tags
All Tags » ASP.net rewrite
-
Hi all
i have spent some much time trying to work this out..
the problem
I'm using ISAPI Rewrite 3 with i think is just like Apache url re writer. i;m trying to get 3 matches.
page/fine_london.asp
^page/(\w+)_(\w+)\.asp is matches
$0 = page/fine_london.asp AND $1 = fine AND $2 = ...
-
<rule>
<url>/([\w-]+).aspx</url>
<rewrite>/Default.aspx?PageName=$1</rewrite>
</rule>
<rule>
...
|
|
|