我们这里主要讲最常用的基于域名的虚拟主机的配置。
1.记事本打开hosts文件,该文件在:C:\ Windows\ System32\ drivers\etc这个文件夹下, 在文件内容的末尾写入如下内容:
[plain] view plain copy
- 127.0.0.1(不可改) www.fangchan.com(自定义)
2.记事本打开httpd.conf文件 ,该文件在apache的目录下,如: D:\AppServ\Apache2.2\conf,修改如下两处:
[plain] view plain copy
- LoadModule vhost_alias_module modules/mod_vhost_alias.so //去掉前面的#,意思是启用apache的虚拟主机功能,第203行
[plain] view plain copy
- Include conf/extra/httpd-vhosts.conf //去掉#的意思是从httpd-vhosts.conf这个文件导入虚拟主机配置
3.记事本打开httpd-vhosts.conf文件,该文件在apache的目录下,如:D:\AppServ\ Apache2.2\conf\extra,按照文件中原有的格式再添加一个VirtualHost,只修改下面有注释的两处,如下:
[plain] view plain copy
- <VirtualHost *:80>
- ServerAdmin [email protected]
- DocumentRoot "D:\softlocation\phpstudy\WWW\ecshop" //DocumentRoot后面修改为网站的根路径
- ServerName www.fangchan.com //ServerName后面修改为hosts中设置的域名
- ErrorLog "logs/dummy-host2.example.com-error.log
- CustomLog "logs/dummy-host2.example.com-access.log" common
- </VirtualHost>
4.重启服务器,浏览器中输入www.fangchan.com即可访问 。
时间: 2024-10-06 19:34:21