user1339074
user1339074

Reputation: 13

Drupal - Redirect just the homepage

due to internal politics with a project I need to redirect only the homepage of a site built in drupal to a different url. I want to be able to access the rest of the site to show people but just that when it goes to the homepage it redirects you.

I want to create a copy of the homepage and then have the original homepage automatically redirect to the new url....meta refresh wouldnt work because there is lag time...

Anyone know how to do this with .htaccess ?

Thanks

Add new comment

Upvotes: 1

Views: 279

Answers (1)

anubhava
anubhava

Reputation: 784918

You can try adding this rule as first rule:

RewriteRule ^$ /new-home-page [L,R]

Upvotes: 2

Related Questions