php配置虚拟目录

来源:互联网 发布:淘宝温馨提示语大全 编辑:程序博客网 时间:2024/06/07 10:02

 httpf.conf->
#Include conf/extra/httpd-vhosts.conf
ˇ
Include conf/extra/httpd-vhosts.conf
extra->httpd-vhosts.conf->
<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host.localhost
    DocumentRoot "D:/wamp/www/Vlifes"
    ServerName www.vlifes.com

    <Directory "D:/wamp/www/Vlifes">
     AllowOverride None
     Options Indexes
     Order allow,deny
     Allow from all
   </Directory>

</VirtualHost>

原创粉丝点击