File: /home/silvpoho/sknhr.com/index.html
<?php
// Send 503 Service Unavailable status
http_response_code(503);
header("Retry-After: 3600"); // seconds
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Website Under Maintenance</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background: #f4f6f8;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background: #ffffff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
max-width: 420px;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>🚧 Website Under Maintenance</h1>
<p>We are currently performing scheduled maintenance.</p>
<p>Please check back again soon.</p>
<p><small>Thank you for your patience.</small></p>
</div>
</body>
</html>