虚拟机配置

来源:互联网 发布:免费开源的cms 编辑:程序博客网 时间:2024/05/21 18:42


<VirtualHost 127.0.0.11:80>
    DocumentRoot D:/AppServ/www/yii/userSystem/userSystem
    ErrorLog D:/AppServ/www/yii/userSystem/userSystem/logs/err_log
    CustomLog D:/AppServ/www/yii/userSystem/userSystem/logs/access_log combined
</VirtualHost>
<Directory "D:/AppServ/www/yii/userSystem/userSystem">
        Options FollowSymLinks
        AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

0 0