Você pode usar o cabeçalho de nova tentativa como este.
ErrorDocument 503 /503.html
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/503.html$
Header always set Retry-After "3600"
RewriteRule .* - [R=503]
Aqui está uma post no blog para mais detalhes.