服务器配置:在手机上WampServer电脑端网页的效果!
1.本地虚拟主机下的 Apache 目录中的bin 目录中的 config 配置文件 http.config文件使用代码编辑器。
2.将httpd.conf配置文件中,检索Require local 将原来的Require local替换为Require all granted
然后就是配置httpd-vhosts.conf 检索Require local 将原来的Require local替换为Require all granted
3.文件灵活组合配置
Require local 仅允许本地访问;
Require all denied 拒绝所有访问;
Require all granted 允许所有访问;
Require ip192.168.0.1 仅允许IP:192.168.0.1 访问;
Require not ip192.168.0.1 仅禁止IP:192.168.0.1访问;
4.完成以上自定义操作以后保存编辑文件选择重启虚拟主机即可,再次打开尝试 在移动端输入本机ip地址 。
参考:百度经验:https://jingyan.baidu.com/article/4d58d541589c189dd5e9c062.html
参考:csdn:https://blog.csdn.net/weixin_30585437/article/details/95173494