2025-07-10 21:33:30 +08:00
|
|
|
# 增加请求体大小限制
|
|
|
|
|
LimitRequestBody 524288000
|
|
|
|
|
|
|
|
|
|
# 错误处理
|
|
|
|
|
ErrorDocument 500 /error_pages/500.html
|
2025-07-12 17:17:27 +08:00
|
|
|
ErrorDocument 404 /error_pages/404.html
|
|
|
|
|
|
|
|
|
|
# API 伪静态规则
|
|
|
|
|
RewriteEngine On
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
|
RewriteRule ^api(/.*)?$ api.php?action=$1 [QSA,L]
|