Viewing 1 replies (of 1 total)
  • Hello @dahysat

    Thank you for contacting the support.

    There is not an option in the plugin to do that unless you are making use of the Role Manager but you can try adding the following code to the theme’s functions.php file:

    add_action( 'rank_math/settings/general', function( $settings ) {
        if( ! is_main_site() ) {
            unset( $settings['htaccess'] );
        }
        return $settings;
    });

    Hope that helps. If you have any further question(s), please let us know.

Viewing 1 replies (of 1 total)
  • The topic ‘Disable .htaccess for multisite’ is closed to new replies.