087988 发表于 2016-9-23 09:23:28

Apache 虚拟主机配置案例

NameVirtualHost *:80
<VirtualHost *:80>
    ServerAdmin admin@free.com
    DocumentRoot "/usr/local/apache/htdocs"
    ServerName www.free.com
    ErrorLog "logs/www.free.com.error.log"
    CustomLog "logs/www.free.com.access.log" combined
    <Directory "/usr/local/apache/docs">
      Options Indexes FollowSymLinks
      DirectoryIndex index.html index.php index.htm
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
</VirtualHost>
<VirtualHost *:80>
    ServerAdmin admin@free.com
    DocumentRoot "/data/html/wordpress"
    ServerName blog.free.com
#ServerAlias blog1.free.com
    ErrorLog "logs/blog.free.com.error.log"
    CustomLog "logs/blog.free.com.access.log" combined
    <Directory "/data/html/wordpress">
      Options Indexes FollowSymLinks
      DirectoryIndex index.html index.php index.htm
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
</VirtualHost>

页: [1]
查看完整版本: Apache 虚拟主机配置案例