I’m sorry.
There was a problem with the theme functions.php
The following code was causing the problem
if ( !is_super_admin() ) {
add_action( 'admin_init', 'redirect_dashiboard' );
}
function redirect_dashiboard() {
$path = $_SERVER['SCRIPT_NAME'];
if ( strpos( $path, '/wp/wp-admin/' ) !== false ) {
wp_redirect( home_url() );
}
}
Thank you.