PHP编程之设置apache虚拟目录

公园里的草真绿啊,绿得让你感觉那是一块绿地毯;公园里的草真密啊,密得看不见泥土;公园里的草真柔啊,微风一吹,它们就翩翩起舞。

apache虚拟目录设置方法分享,供大家参考,具体内容如下

1.开启“虚拟目录配置文件”httpd-vhosts.conf
文件路径:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf
将以下配置:
# Virtual hosts
# Include conf/extra/httpd-vhosts.conf
改为:
# Virtual hosts
Include conf/extra/httpd-vhosts.conf

2.设置虚拟目录可访问
文件路径:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf
将以下配置:

<Directory /> 
 AllowOverride none 
 Require all denied 
 </Directory> 

改为:

<Directory /> 
 AllowOverride none 
 </Directory> 

3.添加虚拟目录
文件路径:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf
添加虚拟目录

<VirtualHost *:80> 
 ServerAdmin webmaster@web.shop.com 
 DocumentRoot "D:/_HelloWorld/01_MyProjects/06_PHP/01_Web/Product/Source/Shop" 
 ServerName web.shop.com 
 ErrorLog "logs/web.shop.com-error.log" 
 CustomLog "logs/web.shop.com-access.log" common 
</VirtualHost> 

4.重启apache
5.在浏览器中输入web.shop.com

到此这篇关于PHP编程之设置apache虚拟目录就介绍到这了。只要有价值,你遇到困难,遭受挫折,被人唾骂,被踩在脚下都不可怕,最可怕的是,你是张白纸。——送给坚持梦想中的人。更多相关PHP编程之设置apache虚拟目录内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: PHP apache