Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

As I'm currently using WordPress only as a registration platform for GlotPress I was wondering if it would be possible to somehow redirect users visiting http://translate.mydomain.tld/account/ to http://translate.mydomain./account/wp-login.php?action=register?

http://translate.mydomain.tld/account/ being my WordPress installation folder (and http://translate.mydomain.tld/ being my GlotPress installation folder)

share|improve this question

1 Answer

up vote 1 down vote accepted

Place this in a plugin or in functions.php

if(is_home()){
    wp_redirect(site_url('/wp-login.php?action=register'));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.