Skip to content

Instantly share code, notes, and snippets.

@opnchaudhary
Created May 12, 2014 10:38
Show Gist options
  • Save opnchaudhary/82410a2062de5a626532 to your computer and use it in GitHub Desktop.
Save opnchaudhary/82410a2062de5a626532 to your computer and use it in GitHub Desktop.
503 page for WordPress
<?php
header(“HTTP/1.1 503 Service Temporarily Unavailable”);
header(“status: 503 Service temporarily Unavailable”);
header(“Retry-After: Mon 1 April 2013 00:00 GMT”);
?>
@opnchaudhary
Copy link
Author

.htaccess file

ErrorDocument 503 /503.php RewriteEngine on RewriteBase / RewriteCond %{ENV:REDIRECT_STATUS} !=503 RewriteCond %{REMOTE_HOST} !^111.111.111.111$ RewriteCond %{REQUEST_URI} !robots.txt$ [NC] RewriteRule ^ - [L,R=503]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment