Hi i have a Addon Domain and i noticed it only works when you enter the web address http://mydomain.co.uk however if i try www.mydomain.co.uk or http://www.mydomain.co.uk does not work. I have added a htaccess file and the following rewrite rule also but had no luck. RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.mydomain\.co.uk RewriteRule (.*) http://www.mydomain.co.uk/$1 [L,R=301] Ive also tried RewriteEngine On RewriteCond %{HTTP_HOST} ^mydomain\.co.uk$ [NC] RewriteRule .* http://www.mydomain.co.uk/ [L,R=301] Any help would be appreciated. Cheers
Apache automatically syncs "www." with the normal HTTP root server, so you don't need to use handlers to sort a request which is already being handled.
Check your dns. You should have something like www 14400 IN CNAME mydomain.co.uk. If you don`t have it, just add it like in my ex.