Hi
I have spend the last couple of days scouring the internet but I can't figure out how to do this.
Basically I need the page...
www.domain.com/page1/12345678
to redirect to
www.domain.com/page2/page1/12345678
I thought I might be able to do it with mod_alias but I end up in an infinite loop.
What I have so far is
RewriteCond %{QUERY_STRING} ^(.*&)/page1/([0-9]+)?$ [NC]
RewriteRule ^/page1/([0-9]+)?$ /page2/page1/$2 [R=301,L]
but I'm just not hitting the rule.
I have spend hours on this and I just can't work out what I am doing wrong.
Any help would be very much appreciated.
Thanks
Si