美文网首页
apache虚拟主机

apache虚拟主机

作者: 紫玥迩 | 来源:发表于2016-09-12 23:59 被阅读23次

httpd.conf

# Virtual hosts
//应该一个就可以
Include conf/extra/httpd-vhosts.conf
Include conf/vhosts.conf

vhosts.conf

<VirtualHost _default_:8013>
DocumentRoot "D:\WWW"
  <Directory "D:\WWW">
    Options -Indexes +FollowSymLinks +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    Require all granted
  </Directory>
</VirtualHost>
//**************************//
<VirtualHost haha.com:8013>
DocumentRoot "D:\WWW\haha"
  <Directory "D:\WWW\haha">
    Options -Indexes +FollowSymLinks +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    Require all granted
  </Directory>
</VirtualHost>

相关文章

网友评论

      本文标题:apache虚拟主机

      本文链接:https://www.haomeiwen.com/subject/rpcmettx.html