I have set up an SEO friendly url rewrite in IIS 6. It works on the url
mysite.com/horoscopes/weekly/46/virgo
Redirect rule: ^horoscopes/weekly\.aspx$
Rewrite Rule: ^horoscopes/weekly/([^/]+)/([^/]+)/?$
this translates to mysite.com/horoscopes/weekly.aspx?weeknum=46&starsign=virgo
How can I redirect this to
mysite.com/horoscopes/star-sign.aspx?pagetype=weekly-horoscope&star-sign=virgo
So this would be mysite.com/horoscopes/star-sign/virgo/weekly-horoscope/astrology
(I'd force default to a type in this case)
I don't know whether to create a redirect or just change the original rule. Any ideas? Many thanks.