I am taking a site permanently offline, but I'm displaying a splash page on it for a week or two before it goes down. How can I edit my .htaccess file to display that splash page? It needs to allow the page itself (root directory) as well as two images in the /images directory.
Place the following configuration into your .htaccess
located in the root of your website:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/splash.html$
RewriteCond %{REQUEST_URI} !^/images/usedimage.png$
RewriteCond %{REQUEST_URI} !^/images/anotherusedimage.png$
RewriteRule .* /splash.html [R=301,L]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With