标签:modules local doc 默认 模块 2.4 host文件 服务 clu
配置虚拟主机
1.配置httpd.conf
D:\wamp\bin\apache\apache2.4.17\conf
1).开启重写模块
LoadModule rewrite_module modules/mod_rewrite.so
2). 访问权限 允许所有访问
AllowOverride all
Require all granted
3).开启vhost配置文件(开启之后 默认的localhost就无法访问)
Include conf/extra/httpd-vhosts.conf
2. 配置vhost文件
D:\wamp\bin\apache\apache2.4.17\conf\extra
<VirtualHost *:80>
DocumentRoot "d:/web"
ServerName ss.com
</VirtualHost>
3.配置系统HOST
C:\Windows\System32\drivers\etc
PS.!(一定要重启服务)
标签:modules local doc 默认 模块 2.4 host文件 服务 clu
原文地址:https://www.cnblogs.com/fujunjie/p/9324384.html