My domain isn't working without www

donArmando

Regular Member
Joined
Oct 28, 2010
Messages
436
Reaction score
273
Hi guys,
Can anyone tell me what do i have to do on DNS because my domain is not working without www.
 
All you need to do is a small domain redirect from cpanel. Look up "cpanel redirect"

If you don't have cpanel, do it through a .htaccess file. In most cases, that should be all you need.
 
Put this in your .htaccess file... of course example.com will be your site ;)

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
 
Thanks guys
I've managed to fix it via DNS.
 
Back
Top