js111
js111

Reputation: 1314

Redirect homepage to specific subdirectory

I have a wordpress site and I need to redirect the homepage "http://members.slateadvisers.com/"

to the registration page

"http://members.slateadvisers.com/?action=registeruser&subscription=1"

How can I do this with htaccess?

Upvotes: 1

Views: 38

Answers (1)

anubhava
anubhava

Reputation: 785286

Insert this rule on top of all the rules just below RewriteBase line:

RewriteCond %{HTTP_HOST} ^members\.slateadvisers\.com$ [NC]
RewriteRule ^$ ?action=registeruser&subscription=1 [L,R=301]

Upvotes: 1

Related Questions