美文网首页
apache 配置文件代码

apache 配置文件代码

作者: 洞房花猪 | 来源:发表于2018-01-26 10:40 被阅读11次
phpstudy 虚拟机配置
<VirtualHost *:80>
    DocumentRoot "D:\phpStudy\WWW"
    ServerName www.phpStudy.net
    ServerAlias phpStudy.net
  <Directory "D:\phpStudy\WWW">
      Options FollowSymLinks ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all
      Require all granted
  </Directory>
</VirtualHost>

Listen 8080
<VirtualHost *:8080>
    DocumentRoot "D:\phpStudy\WWW"
    ServerName www.phpStudy.net
    ServerAlias phpStudy.net
  <Directory "D:\phpStudy\WWW">
      Options FollowSymLinks ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all
      Require all granted
  </Directory>
</VirtualHost>

相关文章

网友评论

      本文标题:apache 配置文件代码

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