一,http.conf 修改部分配置
// 开启rewrite 下面配置前的#去掉
LoadModule rewrite_module modules/mod_rewrite.so
// 开启目录访问权限,Directory改成如下配置
<Directory />
AllowOverride all
Require all granted
</Directory>
二,http.conf 文档末尾增加自定义项目目录配置
<Directory />
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
<VirtualHost *:80>
#本地项目路径
DocumentRoot "D:/www/"
#自定义域名访问 随便写
ServerName test.com
</VirtualHost>
三,增加自定义域名到host文件中
a, 打开系统hosts文件,路径是C:\Windows\System32\drivers\etc\hosts
b, 文档末尾增加 127.0.0.1 test.com
c, 有时候hosts文档修改无法保存,这是系统权限问题,需要修改etc目录下的所有文件权限给你的系统登录用户即可