Link to home
Start Free TrialLog in
Avatar of Plowmister
Plowmister

asked on

URL re-write with classic asp on IIS6

Hi,

I installed IIRF on my server but do not know how to code the regular expressions bit for url rewriting .asp extensions.

I.e. I want to change
/page.asp?i=Links
to
/page/links/

and so on.

Please let me know what to put in the expression file.

Cheers.
Avatar of kevp75
kevp75
Flag of United States of America image

I have personally never seen this component before, so what I would suggest is having a look through, and maybe even ask in their forums

http://www.codeplex.com/IIRF/Thread/List.aspx
try something like this:

RewriteRule ^/page/([^\?\/]+)$ /page.asp?i=$1  [L]
ASKER CERTIFIED SOLUTION
Avatar of Plowmister
Plowmister

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial