How do I get it so that when you type in http://xldesigns.net it comes up with http://www.xldesigns.net ? Regards Ryan
Create a .htaccess file in your root dir (i.e. http://www.xldesigns.net/.htaccess) that contains the following: Options +Indexes Options +FollowSymlinks RewriteEngine On RewriteCond %{HTTP_HOST} ^xldesigns.net$ RewriteRule ^(.*)$ http://www.xldesigns.net/$1 [R=301] Code (markup):
thanks that helped me too I'll rep you too, I've been trying to get how to do that for my site for about a month now, I never asked for help here guess I didnt have to. Thanks!
That is a good solution. Props to Rodney. On certain hosts mod_rewrite has been disabled (paranoid settings). I used plain redirect (js) or php redirect using header() function. But on paranoid settings env php is also disabled