Original text: http://blog.csdn.net/ReadyYes/article/details/51038192
Enter C:Apache24confhttpd.conf
Remove the "#" sign
Enter C:Apache24confextrahttpd-vhosts.conf and configure it as follows
<code><span>#*代表当前服务器的所有IP地址</span><span><VirtualHost *:80></span><span>#主机名</span><span><span>ServerName</span></span> www.zy.com <span>#主机别名 多个主机别名用空格分开</span><span>ServerAlias</span> zy.com xy.com <span>ServerAdmin</span> admin@zy.com <span><span>DocumentRoot</span></span><span>"E:/phptest"</span><span>#Directory 中的路径要和DocumentRoot的路径一致,Directory配置访问权限</span><span><Directory "E:/phptest"></span><span><span>Options</span></span> Indexes FollowSymLinks <span>#默认主页</span><span>DirectoryIndex</span> test.php <span>#自定义后缀php处理 </span><span>AddType</span> application/x-httpd-php .php .ppp .phtml <span>AllowOverride</span><span>all</span><span>Require</span><span>all</span> granted <span></Directory></span><span>#配置虚拟目录</span><span>Alias</span> /abc <span>"E:/php100"</span><span>#配置虚拟目录权限</span><span><Directory "E:/php100"></span><span><span>Options</span></span> Indexes FollowSymLinks <span>AllowOverride</span><span>all</span><span>Require</span><span>all</span> granted <span></Directory></span><span>ErrorLog</span><span>"logs/dummy-www.zy.com-error.log"</span><span>CustomLog</span><span>"logs/dummy-www.zy.com-access.log"</span> common <span></VirtualHost></span><span><VirtualHost *:80></span><span><span>DocumentRoot</span></span><span>"C:\Apache24\htdocs"</span><span><Directory "C:\Apache24\htdocs"></span><span><span>Options</span></span> Indexes FollowSymLinks <span>#默认主页</span><span>DirectoryIndex</span> index.html <span>#自定义后缀php处理 </span><span>AddType</span> application/x-httpd-php .php .ppp .phtml <span>AllowOverride</span><span>all</span><span>Require</span><span>all</span> granted <span></Directory></span><span><span>ServerName</span></span> localhost <span></VirtualHost></span></code>
The above introduces the apache virtual host configuration, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.