Apache2.2和Apache2.4中httpd.conf配置文件的异同

时间:2022-05-18 16:52:21

今天性质来潮,开始玩PHP,在刚开始学习PHP的时候,下载了WAMPServer,在看着慕课网上的PHP入门教程时,配置Apache 的httpd.conf时遇到很大的问题。

首先,视频中提到的:

Order deny,allow

Deny from all

allow 127.0.0.1

在最新WAMPServer 2.5 中的httpd.conf完全找不到,有的只有 Require all denied 这句话,刚开始我很不理解为什么会不一样,并且尝试把这句话改为视频中提到的语句,结果发现服务无法启动。

于是我就考虑到,有可能是版本的原因,所以我在卸载WAMPServer 后,在安装时,比较了视频中的支持版本和本机安装版本,发现视频中的Apache 为2.2版本,而我的支持版本为2.5,于是我在网上官网查看了更新内容,发现这部分是变更比较大的,我就一一举例比较:

Deny All

2.2 configuration:

Order deny,allow
Deny from all
2.4 configuration:

Require all denied


Allow All

2.2 configuration:

Order allow,deny
Allow from all
2.4 configuration:

Require all granted


Allow Host

2.2 configuration:

Order Deny,Allow

Deny from all

Allow from example.org

2.4 configuration:

Require host example.org
Directory 用 Require all granted


这是我了解到的部分更新内容,希望对和我一样刚接触的PHP初学者有所帮助。

希望转载本文的同学能够署上我名或来源链接。

原创不易,尊重他人劳动成果等于他人尊重你的劳动成果。

Thanks