CentOS 中通过 Apache2 提升网站 SEO 的实操清单
一 基础与站点结构优化
- 启用关键模块:在 /etc/httpd/conf/httpd.conf 或 /etc/httpd/conf.modules.d/*.conf 中确保启用 mod_ssl、mod_headers、mod_deflate、mod_expires、mod_rewrite、mod_http2(如可用)。
- 全站 HTTPS 与 HTTP/2:使用 Let’s Encrypt 获取证书并自动配置 Apache。
- 安装:sudo yum install certbot python2-certbot-apache(或 python3-certbot-apache)
- 获取并安装:sudo certbot --apache -d yourdomain.com -d www.yourdomain.com
- 启用 HTTP/2:在 443 虚拟主机中加入 Protocols h2 http/1.1
- 规范化域名与协议(301 永久重定向):
- 非 www → www:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
- HTTP → HTTPS:
RewriteEngine On
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L]
- 美化 URL(前端控制器示例):
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php [L]
- 避免重复内容:在页面 使用 ;在 robots.txt 中声明 Sitemap: https://yourdomain.com/sitemap.xml。
- 日志与验证:语法检查 sudo httpd -t;热重载 sudo systemctl reload httpd;实时查看 tail -f /var/log/httpd/access_log /var/log/httpd/error_log。
二 性能与速度优化
- Gzip 压缩(mod_deflate):压缩文本、样式、脚本等,已压缩的 JPEG/PNG/PDF 等不再压缩。
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript application/json application/xml
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png|pdf|zip|gz|bz2)$ no-gzip dont-vary
DeflateCompressionLevel 6
- 浏览器缓存(mod_expires):区分易变与稳定资源,提升回访速度与抓取效率。
ExpiresActive On
ExpiresByType text/html “access plus 1 hour”
ExpiresByType text/css “access plus 1 year”
ExpiresByType application/javascript “access plus 1 year”
ExpiresByType image/jpeg “access plus 1 year”
ExpiresByType image/png “access plus 1 year”
ExpiresByType image/gif “access plus 1 year”
ExpiresByType image/svg+xml “access plus 1 year”
ExpiresByType font/woff2 “access plus 1 year”
ExpiresByType font/woff “access plus 1 year”
ExpiresByType font/ttf “access plus 1 year”
- HTTP/2:与 HTTPS 同时启用,提升并发与首包速度(在 443 VirtualHost 中设置 Protocols h2 http/1.1)。
- 可选页面级缓存(mod_cache/mod_cache_disk):对可缓存页面或静态资源启用磁盘缓存,按需启用。
CacheEnable disk /
CacheRoot “/var/cache/apache2/mod_cache_disk”
CacheDirLevels 2
CacheDirLength 1
CacheIgnoreHeaders Set-Cookie
CacheIgnoreNoLastMod On
CacheDefaultExpire 3600
- 连接与会话优化:
KeepAlive On
KeepAliveTimeout 15
MaxKeepAliveRequests 100
HostnameLookups Off
在不需要 .htaccess 的场景将 AllowOverride None,减少文件系统检查开销。
三 安全与可抓取性头信息
- 安全响应头(提升安全与可信度,有助于搜索与用户体验):
Header always set X-Content-Type-Options “nosniff”
Header always set X-Frame-Options “SAMEORIGIN”
Header always set X-XSS-Protection “1; mode=block”
Header always set Referrer-Policy “strict-origin-when-cross-origin”
可选:内容安全策略(CSP),按站点实际策略调整
Header always set Content-Security-Policy “default-src ‘self’; script-src ‘self’ ‘unsafe-inline’ ‘unsafe-eval’; style-src ‘self’ ‘unsafe-inline’; img-src ‘self’ data:; font-src ‘self’ data:”
- 抓取与可用性:为不存在资源返回 404 页面,定期清理无效链接;为图片补充 alt 属性,关注移动友好性与结构化数据(Schema.org)。
四 验证与监控
- 配置检查与热重载:sudo httpd -t;sudo systemctl reload httpd。
- 验证要点:
- HTTPS/HTTP2:浏览器开发者工具 → Network,查看 Protocol 是否为 h2,响应状态码是否为 200/301/302 等正确值。
- Gzip:响应头出现 Content-Encoding: gzip;可用 curl -I 或 GTmetrix/WebPageTest 检测。
- 缓存:响应头出现 Cache-Control: max-age=、Expires、ETag/Last-Modified 等。
- 重定向:访问 http:// 与 non-www 应 301 到目标 https://www。
- 日志与监控:实时查看 tail -f /var/log/httpd/access_log /var/log/httpd/error_log;结合监控告警与定期巡检,持续优化抓取与性能。
五 可选增强与注意事项
- 使用 CDN 加速静态资源与动态内容,降低 TTFB 并提升全球可达性。
- 减少 HTTP 请求:合并与压缩 CSS/JS、使用 CSS Sprites、图标字体或 HTTP/2 Server Push(如支持)。
- 选择合适的工作模式:如 prefork 与 worker/event 的取舍,结合内存与并发需求调优。
- 关闭不必要的模块与功能:减少启动时间与内存占用,提升稳定性。
- 规范链接与旧路径迁移:使用 Canonical 标签与 301 永久重定向,避免重复内容与权重分散。
- 持续内容与技术优化:高质量原创内容、合理内部链接、移动端适配与结构化数据标记。