如何把阿帕奇网站503“临时下”?

RFC2616,503服务不可用

由于服务器暂时过载或维护,服务器当前无法处理该请求

如何configurationApache 2.2来为自定义HTML页面提供基于特定名称的虚拟主机503代码?

你可以使用mod_rewrite :

RewriteEngine on RewriteCond %{ENV:REDIRECT_STATUS} !=503 RewriteRule !^/down/for/maintenance$ %{DOCUMENT_ROOT}down/for/maintenance [L,R=503] 

RewriteCond指令可确保在redirect到自定义错误文档时不会发生其他内部错误。

503暂时不可用,带触发器

 RewriteEngine On RewriteCond %{ENV:REDIRECT_STATUS} !=503 RewriteCond "/srv/www/example.com/maintenance.trigger" -f RewriteRule ^(.*)$ /$1 [R=503,L] 

如果maintenance.trigger文件存在,Apache将提供一个503 Service Unavailable响应。 要提供自定义的“维护”页面,请使用ErrorDocument指定文件,如下所示:

 ErrorDocument 503 /503_with_cats.html 

请享用!

@temoto

要为漫游器指定503并为人类指定维护页面,请尝试以下操作

 RewriteEngine on RewriteBase / #for bots such as google RewriteCond %{HTTP_USER_AGENT} ^.*(Googlebot|Googlebot|Mediapartners|Adsbot|Feedfetcher|bingbot)-?(Google|Image)? [NC] RewriteCond %{ENV:REDIRECT_STATUS} !=503 RewriteRule !^/down/for/maintenance$ %{DOCUMENT_ROOT}down/for/maintenance [L,R=503] #for humans RewriteCond %{REMOTE_HOST} !^1\.1\.1\.1 RewriteCond %{REQUEST_URI} !^/maint.html [NC] RewriteRule .* /maint.html [R=302,L]