User this code
function custom_redirect_to_login_page() {
if (!is_user_logged_in() && is_front_page()) {
wp_redirect('URL_OF_YOUR_SPECIFIC_PAGE');
exit();
}
}
add_action('template_redirect', 'custom_redirect_to_login_page');