Windows下Apache配置多域名项目
<VirtualHost www.a.com:80>
DocumentRoot "C:\object\a\web"
ServerName http://www.a.com/
ServerAlias
<Directory "C:\object\a\web">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
<VirtualHost www.b.com:80>
DocumentRoot "C:\object\WWW\b\web"
ServerName http://www.b.com/
ServerAlias
<Directory "C:\object\WWW\b\web">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
<VirtualHost 127.0.0.1:80>
DocumentRoot "C:\object\WWW"
ServerName http://127.0.0.1/
ServerAlias
<Directory "C:\object\WWW">
Options Indexes FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
Options 项:
Indexes 显示目录结构