Skip to content

Instantly share code, notes, and snippets.

@kartsims
Created September 25, 2015 14:09
Show Gist options
  • Save kartsims/d87d19583c48595d75fa to your computer and use it in GitHub Desktop.
Save kartsims/d87d19583c48595d75fa to your computer and use it in GitHub Desktop.
<?php
$protocol = "HTTP/1.1" == $_SERVER["SERVER_PROTOCOL"] ? "HTTP/1.1" : "HTTP/1.0";
header( "$protocol 503 Service Unavailable", true, 503 );
header( "Retry-After: 3600" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment