This syntax from my httpd.conf seems to work:
<VirtualHost *:80>
UseCanonicalName Off
VirtualDocumentRoot C:/www/%2
ErrorLog /www/Apache22/logs/error.log
</VirtualHost>
<VirtualHost *:80>
UseCanonicalName Off
VirtualDocumentRoot C:/www/vhosts/%2
ErrorLog /www/Apache22/logs/error.log
</VirtualHost>
However, this question is about my understanding of it, to see if I'm correct.
I have a domain as www.mytestsite.cc, and this is its vhost:
<VirtualHost *:80>
ServerName www.mytestsite.cc
ServerAlias mytestsite.cc
DocumentRoot /www/testsitecc
</VirtualHost>
<Directory "C:/www/testsitec">
Options All
AllowOverride All
order allow,deny
allow from all
</Directory>
but should it be like this:
<VirtualHost *:80>
ServerName www.mytestsite.cc
ServerAlias mytestsite.cc
DocumentRoot /www/mytestsite.cc
</VirtualHost>
<Directory "C:/www/mytestsite.cc">
Options All
AllowOverride All
order allow,deny
allow from all
</Directory>
Which is better, and what does the %2 mean - is it just domainname.com without the www
My Apache server is working, that's not an issue.
Basically, have I got this right and how could I get better with this skill on my dev server?