Redirecting javathinking.com to www.javathinking.com
I thought it would be a good idea to redirect requests to http://javathinking.com to http://www.javathinking.com and I found out how to do that easily here. Basically I just needed to add the apache directives: RewriteEngine on RewriteCond %{HTTP_HOST} ^javathinking.com RewriteRule ^(.*)$ http://www.javathinking.com$1 [R=permanent,L] In ISPConfig this can be done easily through the administration console rather than editing the apache config files. Firebug shows me that I am now getting a 301 redirect when accessing http://javathinking.com.