Redirect or Prevent Viewing of Custom Taxonomy’s Archives?

I added this to my child-theme’s functions.php file and it works 100%

add_action( 'template_redirect', 'redirect_archive' );
function redirect_archive() {
    if ( is_tax('location') ) {
        $termurl = get_query_var( 'term' );
        wp_redirect( home_url('/search/location/'.$termurl), 301 );
        exit;
    }
}