I use ISAPI_Rewrite v2 and I have this rules:
RewriteRule ^/cnvrt$ /convert [I,RP]
RewriteRule ^/convert$ /convert.aspx [I,L]
I want that whenever someone enter site.com/cnvrt it will redirect him to site.com/convert
The problem with the above rule is that it just put a window that says the page can be found under this url: .... And what I want is to it redirect him to the page(that the url will change)
I dont want to handle it in the code level.
How can I do this?
Thanks