apache配置httpd-vhosts实现虚拟主机访问

环境:WAMP



第一步:打开httpd.conf文件

1.去掉  Include conf/extra/httpd-vhosts.conf 前面的注释符号(#)

2.去掉 LoadModule rewrite_module modules/mod_rewrite.so前面的注释符号(#)

3.把None  改为All


    AllowOverride None --> All
    Options None
    Require all granted



第二步:打开D:\wamp\bin\apache\Apache2.4.4\conf\extra 中的httpd-vhosts.conf文件

修改端口


    ServerAdmin [email protected]
    DocumentRoot d:/wamp/www/     //这里也要改,是我的工作路径
    ServerName localhost
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common



    ServerName www.tp.com  //定义可直接访问的域名
    ServerAlias www.demotp.com 
    DocumentRoot d:/wamp/www/temp_tp  //项目的路径
      //这一块内容直接复制,注意改引号里面的路径
    	Options +Indexes +Includes +FollowSymLinks +MultiViews
    	AllowOverride All
    	Require local
    




第三步:打开C:\Windows\System32\drivers\etc 中的HOSTS文件

将127.0.0.1 www.tp.com 新增在末尾


第四步:重启WAMP服务器






你可能感兴趣的:(学习笔记)