I have a lot of simple Redirects, but they all have one single "path" as the URI. Now I need to go one level deep. For example, this works: Redirect /lapdogs http://www.petco.com/smalldogs/petite/index.html the following does not work, but that is what I need to get working.... Redirect /lapdogs/Maltese http://www.petco.com/smalldogs/petite/maltese/index.html I am running Apache 2.0.47 Thank you
domain.com/.htaccess Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^whatever/$ http://www.petco.com/smalldogs/petite/index.html [R=301,L] RewriteRule ^lapdogs/Maltese$ http://www.petco.com/smalldogs/petite/maltese/index.html [R=301,L]