How Do I Add WWW to My Domain Name?
A basic domain name---for example, yourdomain.com---is usually all that's necessary to load a website in a web browser. However, adding the prefix "www." before the domain name has become a standard convention, and it's a good idea for every website to be accessible via both "yourdomain.com" and "www.yourdomain.com." The "www." portion of the URL is known as a sub-domain. Enabling sub-domains can be challenging for a beginner, but it's certainly not impossible.
Instructions
-
If You Can Modify Your DNS Records
-
1
Log in to the DNS control panel provided by your web host.
-
2
Add a new record. (This is often done by pressing an "Add Record" or "+" button.)
-
-
3
Type "www" (without the quote marks) in the "Name" field.
-
4
Type "CNAME" (without the quote marks) in the "Type" box or choose "CNAME" from the "Type" drop-down list.
-
5
Type the following in the "Content" box:
yourdomain.com.
Replace "yourdomain.com" with your specific domain name.
-
6
Type "3600" (without the quote marks) in the "TTL" box.
-
7
Click "Save Record."
Apache Web Server Users
-
8
Launch your preferred terminal program. On Mac OS X, this is usually Terminal (accessible via the dock); on Windows, type "cmd" (without the quote marks) into the "Run" menu off of the Start Menu.
-
9
Type the following to connect to your server via the command line (also known as SSH):
ssh yourdomain.com
Replace "yourdomain.com" with your specific domain name.
-
10
Enter your username and password as directed.
-
11
Type the following to edit your Apache configuration file:
sudo nano /etc/apache2/apache2.conf
-
12
Locate a line that looks something like this:
ServerName yourdomain.com
(Instead of "yourdomain.com" it should have your domain name listed.)
-
13
Move the blinking prompt to the very end of the ServerName line with your keyboard's arrow keys. (Your mouse will not work in this interface.)
-
14
Hit "Enter" to start a new line.
-
15
Paste the following (Ctrl+V on Windows, Cmd+V on Macs) on this blank line:
ServerAlias www.domain.com
Replace "domain.com" with your specific domain name.
-
16
Type Ctrl+X to quit the editing program. Hit "Enter" to confirm your saved changes. You will be brought back to the command line.
-
17
Type the following to restart Apache, which is necessary to make your changes:
sudo /etc/init.d/apache2 reload
-
1
Tips & Warnings
Consult your web host if you need help configuring a WWW subdomain. Certain free and low-cost hosts may not offer this option.
Certain methods of adding the WWW sub-domain mean search engines will interpret yourdomain.com and www.yourdomain.com as two separate sites, which can hurt search rankings. See Resources for more information.
References
Resources
- Photo Credit WWW 88 image by chrisharvey from Fotolia.com