Forum Moderators: phranque
I've taken over a site and have a whole lot of traffic going to two places:
www.domain.com/script/?querystring
and
www.domain.com/script?querystring
I need to permanently move these two strings to:
www.domain.com/newscript?querystring
Help?
Apache forum Charter [webmasterworld.com] :(
> /script/?querystring and /script?querystring to /newscript?querystring
RewriteRule ^script/?$ http://www.example.com/newscript [R=301,L] RewriteRule ^script/?$ /newscript [L]
Jim