Thanks,
I finally figured it out…
RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.olddomain.com$
RewriteRule ^/?$ “http\:\/\/www\.newdomain\.com\/newfolder\/” [R=301,L]
I just needed to add slashes everywhere and this /? instead of this (.*)
If you have a second could you explain why?
Thanks!