PDA

View Full Version : Am I able to temporarily disable my site for construction?


Artyom
08-03-2007, 10:07 PM
Yes! You can do this by putting some code into your .htaccess file via FTP. The following lines of code will redirect all of the page requests to the page you specify, index.html for example:

RewriteEngine On
RewriteBase /
RewriteRule .* index.html [L]