1.apache主目录
ServerRoot “usr/local/apache2”
2.监听端口号
Listen 80
此处也可以监听特定的ip
3.加载动态模块
需要用到的时候,才会去加载
eg:加载php模块
LoadModeule php5_module modules/libphp5.so
4.php进程执行者
查看进程执行者
ps -ef | grep httpd
5.ServerName www.lampym.com:80
域名,可写可不写,也可以写自己的ip。
6.documentRoot 网站根目录
7.Directory设置文件夹的权限
其中FollowSymlinks设置是否允许快捷方式
eg:Options FollowSymlinks
indexes设置如果没有首页的时候,是否显示列表
eg:Options indexes
AllowOverride 是否允许重写
8.设置目录默认首页
DirectoryIndex index.html index.php
9.错误日志
ErrorLog:”logs/error_log”
10.访问日志
Customlog:”logs/access_log”
11.解析php脚步
AddType application/x-httpd-php .php
12.控制错误页面的输出
ErrorDocument 404 missing.html
13.包含外边配置文件
include etc//extra/httpd-vhosts.conf
14.控制错误页面的输出ErrorDocument
添加missing.html文件,当404错误的时候,会访问该页面
当访问一个不存在页面的时候,就会显示该页面
eg: