More on redirects with apache

Okay I got the redirects working finally (correctly), to redirect domain.com to www.domain.com. I tried a simple RedirectMatch but that was directing everything with “sunfire.mydomain.home” to “www.sunfire.mydomain.home”. So “blog.sunfire.mydomain.home” was redirecting to “www.sunfire.mydomain.home”.

Just had to put this in my .htaccess:

RewriteEngine On
#Options +FollowSymlinks
RewriteCond %{HTTP_HOST} ^sunfire\.mydomain\.home
RewriteRule ^(.*)$ http://www.sunfire.mydomain.home [R=permanent,L]

Notice I don’t need the +FollowSymlinks in .htaccess because I put that in my httpd.conf

Leave a Comment

You must be logged in to post a comment.