Forum Moderators: phranque
The question is how to 301 redirect my old images (only images) urls to new locations.
Example:
old url: [mysite.com...]
new url: [mysite.com...]
I have tried the following rule, but it starts to loop.
RewriteEngine on
RewriteRule (.*.jpg) [mysite.com...] [r=301,L]
Can anyone help me with this trivial(?) rule?
Thank you
RewriteEngine on
RewriteCond $1 !owt/
RewriteRule ^(.*\.jpg)$ http://www.example.com/owt/$1 [R=301,L]
[edited by: jdMorgan at 4:52 pm (utc) on Aug. 10, 2006]