Si vols posar fàcilment qualsevol lloc web en Manteniment, al que tens accés per FTP, soles has de fer:
1 . Pujar aquest fitxer al directori arrel (el que té el fitxer .htaccess):
Ací tens el codi d’aquest fitxer:
<!DOCTYPE html>
<html>
<head>
<title>Página en Mantenimiento</title>
<style>
body {
background-color: black;
color: lime;
font-family: 'Courier New', monospace;
text-align: center;
}
h1 {
font-size: 50px;
}
p {
font-size: 20px;
}
.blink {
animation: blinker 1s linear infinite;
}
footer {
margin-top: 50px;
color: gray;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
</style>
</head>
<body>
<h1>Mantenimiento en Progreso</h1>
<p class="blink">Volveremos pronto...</p>
<footer>
<p>© 2023 Anubis Solutions</p>
</footer>
</body>
</html>
2. Seguidament, modificar l’arxiu .htaccess per redirigir tot el tràfic al fitxer “mantenimiento.html”. Has d’afegir aquestes línies dalt del tot del teu fitxer .htaccess.
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/mantenimiento.html$
RewriteRule ^(.*)$ /mantenimiento.html [R=302,L]