WAMPSever笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WAMPSever笔记相关的知识,希望对你有一定的参考价值。
多站点配置
httpd-vhosts.conf 虚拟目录配置文件
<VirtualHost *:80>
ServerAdmin [email protected] //管理员邮箱地址
DocumentRoot "c:/Apache24/docs/dummy-host2.example.com" //文件目录指向网站代码
ServerName dummy-host2.example.com //主机名
ErrorLog "logs/dummy-host2.example.com-error.log" //错误日志
CustomLog "logs/dummy-host2.example.com-access.log" common //日常日志
</VirtualHost>
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf //这句话的意思是包含扩展文件conf/extra/httpd-vhosts.conf ,但是有#号,(#号意思是注释)
wampserver本地php服务器如何让外网访问及启用
允许所有访问
Require all granted
拒绝所有访问
Require all denied
默认是 Require local 仅允许本地访问
仅允许IP:192.168.0.1 访问
Require all granted
Require ip 192.168.0.1
仅禁止IP:192.168.0.1访问
Require all granted
Require not ip 192.168.0.1
以上是关于WAMPSever笔记的主要内容,如果未能解决你的问题,请参考以下文章
修改wampsever中MySql5.7.14默认为空的密码