Domain Setup Help

lgchandana

Registered Member
Joined
Apr 3, 2011
Messages
86
Reaction score
3
Hello Friends.


I have big problem. Not get answer yet Please help me :confused:


I have Hostgator Hosting account and go daddy domain.
I have lunched my site now.
But when I go to my forum URL show as this.
blackpointforum com


But I want show URL with www "www blackpointforum com"


Same problem for this url androidwallpapershq com


How Can I do this. Please give me step by step help.
 
Wonder why you need it to show such, but.... When you set up the domain name you should have the option, usually under DNS options, to resolve to both the www.name.com and the name.com. Also for some reason, some sites using newer versions of Firefox seem to only want to show the name without the www prefix.
 
No Friend. My Blogger blog URL(Setup with Godaddy) show with WWW
But Hostgator domain is now show. Please tell me which configuration want to change show with www

I tested with Chrome and Firefox browser.

Pls answer
 
How to configure in Domain account
 
If your non www url also points to your server, then you could do a 301 redirect via htaccess! Copy paste this in your htaccess if that is the case (i guess hostgator has mod_rewrite enabled. Please confirm with them):

Code:
RewriteEngine On
 RewriteCond %{HTTP_HOST} !^domain\.com 
RewriteRule (.*) http://domain.com/$1 [R=301,L]
If that's not the case, then you might have to configure your domain properly....
 
Back
Top