1: 用记事本打开C:/WINDOWS/system32/drivers/etc/hosts文件,配置如下:
127.0.0.1 phptest
注,如果在浏览器地址栏输入phptest被搜索引擎导航到搜索页,请在前面加http://
2:XAMPP Control Panel -> Apache -> config -> httpd.conf , 找到
<Directory />
AllowOverride none
Require all denied
</Directory>
修改权限,变成:
<Directory />
Order deny,allow
Allow from all
</Directory>
3:xampp\apache\conf\extra\httpd-vhosts.conf,在此文件末尾添加如下内容:
F:/vir是我要添加的虚拟根目录绝对路径
<Directory "F:/vir">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
ServerName phptest
DocumentRoot "F:/vir"
</VirtualHost>
4:重启Apache服务即可。
每个虚拟目录都要把步骤1和3的语句在源文件中添加上,比如你还想使用原来的htdocs作为目录的话,就要新建一段路径为htdocs目录的虚拟目录的定义语句,类似上面F:/vir