How do I permanently remove all files in a sub directory (about 70 pages) to a new domain, i.e., all sub directory files are now the contents of a new domain.
I was using this
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^foldername/$ http://www.example.com/ [R=301,L]
however it didn't move every page so then I entered each page separately.
However all those redirects are slowing down the original site.
Is there something wrong with the original line above that doesn't move all files?