whats better?? www. or no www. ?

Status
Not open for further replies.
i think ---

www stands for World Wide Web. which refers to the servers who resolves DNS addresses. but some domain registers like name.com.. allows domains registered through it work without the www.. cuz they are taking care of it in the background. dats why in the domain registers site you see this feature writen "Can access site without www. = YES" like this..

well i may be wrong.. but i believe it that..
 
For anyone wanting to make it pernemently www.domain.com to resolve cookie / login issues for users simply add the code below to your .htaccess file (found on the FTP server)

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.your_domain.com$
RewriteRule ^(.*)$ http://www.your_domain.com/$1 [R=301]
 
Status
Not open for further replies.
Back
Top