Hi Gurus,
I have set up multiple virtual host and would like for them to be able to be pulled up without typing www. in the web address. Ex. Instead of typing you can just put mywebsite.com and it the name will resolve.
I am currently using the the following;
Is there anything I need to change or add?
I have set up multiple virtual host and would like for them to be able to be pulled up without typing www. in the web address. Ex. Instead of typing you can just put mywebsite.com and it the name will resolve.
I am currently using the the following;
Code:
<VirtualHost *:80>
ServerAdmin me@email.com
DocumentRoot C:\webs\mysite.com
ServerName [URL unfurl="true"]www.mysite.com[/URL]
ServerAlias mysite.com *.mysite.com
ErrorLog logs/mysite.com-error_log
CustomLog logs/mysite.com-access_log common
<Directory D:\webs\mysite.com>
Options Indexes FollowSymLinks +Includes +ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Is there anything I need to change or add?