CNAME Record in .htaccess file: correct format?
- by Josh
In my .htaccess file, I have set up several A records in the following structure:
RewriteCond %{HTTP_HOST} ^domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteRule ^substring\/substring\/etc?$
"http\:\/\/domain\.com\/newsubstring\/etc\/" [R=301,L]
Is is possible to easily set up a CNAME record in the same fashion and put it in my…