概述

设置apache虚拟目录

1.开启“虚拟目录配置文件”httpd-vhosts.conf

文件路径:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf

将以下配置:

  1. # Virtual hosts
  2. # Include conf/extra/httpd-vhosts.conf

改为:

  1. # Virtual hosts
  2. Include conf/extra/httpd-vhosts.conf

2.设置虚拟目录可访问

文件路径:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf

将以下配置:

  1. <Directory />
  2. AllowOverride none
  3. Require all denied
  4. </Directory>

改为:

  1. <Directory />
  2. AllowOverride none
  3. </Directory>

3.添加虚拟目录

文件路径:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf

添加虚拟目录

  1. <VirtualHost *:80>
  2. ServerAdmin [email protected]
  3. DocumentRoot "D:/_HelloWorld/01_MyProjects/06_PHP/01_Web/Product/Source/Shop"
  4. ServerName web.shop.com
  5. ErrorLog "logs/web.shop.com-error.log"
  6. CustomLog "logs/web.shop.com-access.log" common
  7. </VirtualHost>

4.重启apache

5.在浏览器中输入web.shop.com

【PHP编程之路-1】设置apache虚拟目录-LMLPHP

05-07 13:13