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配置本地环境,解决打开打开本地网站问题

wampsever修改数据库密码

wampsever提示vcruntime140.dll

修改wampsever中MySql5.7.14默认为空的密码

用手机或外部设备在同一局域网下访问虚拟主机wampsever的方法版本号是2.4.9

php 学习 day2-Apache服务器的配置更改 和配置本地虚拟主机