How to add WWW to domain URL?

JRFisher

Junior Member
Joined
Aug 10, 2013
Messages
112
Reaction score
41
Does anybody know how to set up using godaddy or hostgator my url to display www before my domain?
 
can you edit or create .htaccess file?
google it and you ll find it
 
Does anybody know how to set up using godaddy or hostgator my url to display www before my domain?

When you install wodpress on it using Mojo marketplace, it will allow you to choose whether you want a domain which has www on it or none.
 
Add this to .htaccess file:

Code:
Options +FollowSymLinks
RewriteEngine on
RewriteBase / 
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
 
Mate, let me help.
First off, install WordPress to your domain via your host's CPanel.

Then, login to domain's WordPress Panel.
On WP's panel, find and click Settings.
Click General.
Then, you'll find these two: WordPress Address (URL) and Site Address (URL).

That's where you can add or remove "www".

Let me know if this helps.
 
Mate, let me help.
First off, install WordPress to your domain via your host's CPanel.

Then, login to domain's WordPress Panel.
On WP's panel, find and click Settings.
Click General.
Then, you'll find these two: WordPress Address (URL) and Site Address (URL).

That's where you can add or remove "www".

Let me know if this helps.

What if he doesn't want to use WordPress? What if he wants to use Drupal, Joomla, or just plain HTML?
 
if above steps doesn't work for you then simply add a new sub domain with www
by default its added when u add a new domain in cpanel
 
Yeah just add a sub-domain.

You can also add a"wild card" dns which means anythinghere.youromdomain.com will show your main page
 
In the Hostgator Cpanel Click on 'Redirects' under the Domains Section..
Then Pick the domain from the drop down menu and redirect it to the WWW.

Here's some pics I just threw together to help..

BfgdNcR
 
The .htaccess works best. You always want to be in control of it instead of relying on hostgator to do it.
 
Back
Top