Skip to content

Instantly share code, notes, and snippets.

@chodhary
Created July 9, 2015 10:53
Show Gist options
  • Save chodhary/254a9df4b468ce55ac9e to your computer and use it in GitHub Desktop.
Save chodhary/254a9df4b468ce55ac9e to your computer and use it in GitHub Desktop.
Maintenance Mode
<?php
header('HTTP/1.1 503 Service Temporarily Unavailable',true,503);
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 172800');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="robots" content="noindex,nofollow">
<title>503 - Temporarily Closed For Maintenance</title>
<style type="text/css">
<!--
p
{
font-family: "Verdana", sans-serif;
}
-->
</style>
</head>
<body>
<p><b>Natural Herbal Remedies</b></p>
<p>is temporarily closed for maintenance.</p>
<p>Normal operation will resume as soon as possible.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment