apache2.2 虚拟机配置

来源:互联网 发布:mac阿里旺旺验证码出错 编辑:程序博客网 时间:2024/06/05 07:49

NameVirtualHost *
<VirtualHost *>
    ServerName  www.####.cn
        DocumentRoot /website

     <Directory /website>
        Options Indexes FollowSymLinks MultiViews
 # this line
        AllowOverride ALL
        Order allow,deny
        Allow from all
 DirectoryIndex index.htm index.html index.php default.php default.phtml default.html default.htm
    </Directory>
</VirtualHost>