Forum Moderators: phranque
.htaccess) as the DocumentRoot directive specifically states that the Context [httpd.apache.org] is
server config, virtual host, which means that the directive may be used in the server configuration files (e.g.,
httpd.conf), but not within any
<VirtualHost>or
<Directory>containers. It is not allowed in
.htaccessfiles at all.
<VirtualHost 127.0.0.2>
ServerAdmin webmaster@host.foo.com
DocumentRoot c:/Web/mydir/dirsite
ServerName site512
#ErrorLog logs/host.foo.com-error_log
#TransferLog logs/host.foo.com-access_log
</VirtualHost>
if I write 127.0.0.2 I see site
if I write [site512...] not ..
why?
I need to use this with name
thksks