Reputation: 12512
I will be moving to a new server and I need to make sure that everyone, no matter where on the site they come are redirected to a particular page. I think I need to do it with .htaccess Any suggestions how?
Thanks
Upvotes: 0
Views: 136
Reputation: 12437
create a file with name maintenance.php.
Then put
header("Location:maintenance.php");
in index.php in your root folder .
:)
Upvotes: 1
Reputation: 70731
Try:
RewriteBase /
RewriteRule !maintenance\.php /maintenance.php
Upvotes: 2