apache 搭建PHP多站点

修改apache 配置文件:httpd.conf

  1、默认 Listen 80端口

  2、添加配置如下:

<VirtualHost *:80> 
    ServerAdmin admin@yii.com 
    ServerName yii.com 
    ServerAlias www.yii.com  
    DocumentRoot "E:/Soft/PHP/Project" 
    DirectoryIndex index.html index.php   
    <Directory "E:/Soft/PHP/Project"> 
     Options  Indexes FollowSymLinks 
     AllowOverride All 
     Require all granted 
    </Directory>   
</VirtualHost> 

 

posted @ 2015-04-20 22:20  Rhythmk  阅读(187)  评论(0编辑  收藏  举报
Rhythmk 个人笔记