【PHP】phpstudy vhosts.conf 配置

#Listen 876

<VirtualHost *:876>
    ServerName localhost
    DocumentRoot "D:\phpStudy\PHPTutorial\WWW"    
    DirectoryIndex index.html index.php
  <Directory "D:\phpStudy\PHPTutorial\WWW">
      Options FollowSymLinks ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all
     Require all granted
  </Directory>
</VirtualHost>


<VirtualHost *:876>
    DocumentRoot "E:\0000\XXX"
    ServerName hr.flc.world
    ServerAlias 
  <Directory "E:\0000\XXX">
      Options FollowSymLinks ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all
     Require all granted
  </Directory>
</VirtualHost>

猜你喜欢

转载自www.cnblogs.com/defineconst/p/10245707.html
今日推荐