Reputation: 13
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
Reputation: 784918
You can try adding this rule as first rule:
RewriteRule ^$ /new-home-page [L,R]
Upvotes: 2