Apache HTTP Server(简称Apache)是世界上最流行的Web服务器软件之一,它是一个开源、跨平台的Web服务器,由Apache软件基金会开发和维护。
下载Apache
安装步骤
# 解压下载的压缩包到C:\Apache24
# 打开命令提示符(管理员)
cd C:\Apache24\bin
httpd.exe -k install
启动服务
net start Apache2.4
sudo apt update
sudo apt install apache2
sudo systemctl start apache2
sudo systemctl enable apache2
sudo yum install httpd
sudo systemctl start httpd
sudo systemctl enable httpd
C:\Apache24\conf\httpd.conf
/etc/apache2/apache2.conf
(Ubuntu) 或 /etc/httpd/conf/httpd.conf
(CentOS)修改监听端口
Listen 80
# 可改为其他端口如8080
设置服务器名称
ServerName localhost:80
设置文档根目录
DocumentRoot "C:/Apache24/htdocs" # Windows
DocumentRoot "/var/www/html" # Linux
目录权限设置
<Directory "C:/Apache24/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<VirtualHost *:80>
ServerAdmin webmaster@site1.com
DocumentRoot "C:/Apache24/htdocs/site1"
ServerName site1.com
ServerAlias www.site1.com
ErrorLog "logs/site1-error.log"
CustomLog "logs/site1-access.log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@site2.com
DocumentRoot "C:/Apache24/htdocs/site2"
ServerName site2.com
ServerAlias www.site2.com
ErrorLog "logs/site2-error.log"
CustomLog "logs/site2-access.log" common
</VirtualHost>
httpd.exe -k start # 启动
httpd.exe -k stop # 停止
httpd.exe -k restart # 重启
httpd.exe -t # 测试配置语法
sudo systemctl start apache2 # 启动
sudo systemctl stop apache2 # 停止
sudo systemctl restart apache2 # 重启
sudo apache2ctl configtest # 测试配置语法
端口冲突
netstat -ano | findstr :80
(Windows) 或 sudo netstat -tulnp | grep :80
(Linux)权限问题
sudo chown -R www-data:www-data /var/www/html
403 Forbidden错误
Require all granted
设置.htaccess不生效
AllowOverride All
启用压缩模块
LoadModule deflate_module modules/mod_deflate.so
启用缓存
LoadModule expires_module modules/mod_expires.so
调整MaxKeepAliveRequests和KeepAliveTimeout
考虑使用MPM模块(prefork/worker/event)
隐藏Apache版本信息
ServerTokens Prod
ServerSignature Off
禁用目录浏览
Options -Indexes
限制HTTP方法
<LimitExcept GET POST>
Deny from all
</LimitExcept>
定期更新Apache到最新版本
完成以上配置后,你就可以通过浏览器访问http://localhost
来测试你的Apache服务器是否正常运行了。