Answer the question
In order to leave comments, you need to log in
Make main page wp-signup.php?
How to set wp-signup.php home page in wp?
Answer the question
In order to leave comments, you need to log in
You have a noticeably non-standard task, so I'll start my answer with "try it."
Try wp-config.php
adding the following lines:
define( 'WP_HOME', 'https://VashSite.ru/wp-signup.php' );
define( 'WP_SITEURL', 'https://VashSite.ru/wp-signup.php' );
define( 'NOBLOGREDIRECT', 'https://VashSite.ru/wp-signup.php' );
define( 'NOBLOGREDIRECT', '' );
'NOBLOGREDIRECT'
You can just redirect unauthorized users
add_action( 'template_redirect', 'redirect_non_logged_users' );
function redirect_non_logged_users() {
if ( is_home() && !is_user_logged_in() ) {
wp_redirect( wp_login_url(), 301 );
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question