-------【虚拟目录设置】------ 1、打开apache的conf目录下httpd.conf 2、注释#DocumentRoot "D:/apache2.2/htdocs" 3、在后添加代码 #欢迎页面 DirectoryIndex index.html index.htm index.php #站点的别名 Alias /myblog "D:/myblog" #访问权限 Order allow,deny Allow from all 4、访问http://localhost:80/myblog -----------【虚拟主机设置】--------- 1、启动 httpd-vhosts.conf 在 httpd-conf 文件中打开 # Virtual hosts Include conf/extra/httpd-vhosts.conf 2、在httpd-vhosts.conf文件中做配置 DocumentRoot "d:/myblog" DirectoryIndex index.html index.htm index.php Options FollowSymLinks AllowOverride None Order allow,deny Allow from all 3、修改hosts文件 C:\WINDOWS\system32\drivers\etc\hosts 127.0.0.1 www.bkk.com 4、访问www.bkk.com