Force redirect single.php to index

put this code in functions.php file

add_action('wp', 'myfun');
 function myfun(){ 
    if(is_single()){ 
            wp_redirect( home_url() ); exit;  
        }

  }

hope this trick solve your problem. all the best 😉