I'm switching servers and changing names all at the same time.
I want to use a mod_rewrite to seemlessly transfer my visitors to the new site as well as help keep some of my PR and Links.
Anyways, I set up an .htaccess file as:
RewriteEngine On
RewriteRule ^(.*)$ http://www.newserver/$1 [R=301,L]
But there is a problem! My old server used a public folder of
/HTML and my new server uses
/public_html
Is there a conditional that I can throw into my
.htaccess file to switch folders AND Redirect?
Thanks!