下载 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
# 使用Homebrew安装
brew install httpd
brew services start httpd
C:\Apache24\conf\httpd.conf
/etc/apache2/apache2.conf
(主配置) 和 /etc/apache2/sites-available/
(虚拟主机)/usr/local/etc/httpd/httpd.conf
修改监听端口
Listen 80
# 可添加多个监听端口
Listen 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>
创建配置文件
sudo nano /etc/apache2/sites-available/example.com.conf
配置内容
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
ErrorLog ${APACHE_LOG_DIR}/example.com_error.log
CustomLog ${APACHE_LOG_DIR}/example.com_access.log combined
</VirtualHost>
启用站点并重载配置
sudo a2ensite example.com.conf
sudo systemctl reload apache2
# Linux
sudo a2enmod rewrite
sudo systemctl restart apache2
# Windows - 取消注释httpd.conf中的
LoadModule rewrite_module modules/mod_rewrite.so
# Linux
sudo a2enmod ssl
sudo a2ensite default-ssl
sudo systemctl restart apache2
检查配置语法
apachectl configtest # Linux/macOS
httpd -t # Windows
查看错误日志
/var/log/apache2/error.log
C:\Apache24\logs\error.log
常见问题解决
Listen
指令或关闭占用80端口的程序Require
指令调整MPM配置
# 在httpd.conf中
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxRequestWorkers 250
MaxConnectionsPerChild 10000
</IfModule>
启用压缩
sudo a2enmod deflate
然后在配置中添加:
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
</IfModule>
启用缓存
sudo a2enmod expires
配置示例:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
</IfModule>
完成以上配置后,重启Apache服务使更改生效。