santa
santa

Reputation: 12512

how to redirect to main page

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

Answers (2)

zod
zod

Reputation: 12437

create a file with name maintenance.php.

Then put

header("Location:maintenance.php");

in index.php in your root folder .

:)

Upvotes: 1

casablanca
casablanca

Reputation: 70731

Try:

RewriteBase /
RewriteRule !maintenance\.php /maintenance.php

Upvotes: 2

Related Questions