How to Redirect
-
What is the htaccess code to redirect everything in a directory to a file?
Thanks!
-
RewriteRule (.*) [http://www.newdomain.com/](http://www.newdomain.com/) [R=301,L] -
-
Hey Tyler,
The full code for the .htaccess file would be:
RewriteEngine on RewriteBase / RewriteRule ^domain.com/directory/(.*) http://domain.com/directory.html [R=301,L] -
I implemented this and it did not work. I did it exactly as you said and made sure rewrite engine is on.
Tyler