配置虚拟主机

  1. 在apache的httpd.conf文件末添加如下代码:

 ServerName 修改成自己的域名

 DocumentRoot "修改成自己的项目路径"

  

  Options FollowSymLinks IncludesNOEXEC Indexes

  DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml

  AllowOverride All

  Order Deny,Allow 

  Allow from all 

 

示例:

 说明:www.ff.com 是我自己预定义的域名

 ServerName www.ff.com

 DocumentRoot "E:/wamp/www/demo"

 

 Options FollowSymLinks IncludesNOEXEC Indexes

 DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml

 AllowOverride All

 Order Deny,Allow 

 Allow from all 

在系统文件C:\Windows\System32\drivers\etc\hosts中添加如下配置

127.0.0.1 www.ff.com