<form role="search" method="get" id="searchform" action="https://test-5.vbbn.in/entreprises/">
  <label class="screen-reader-text" for="s">Поиск: </label>
 <input type="text" value="" name="s" id="s">
 <input type="submit" id="searchsubmit" value="найти">
 </form>  function custom_search_base() {
    $GLOBALS['wp_rewrite']->search_base = '%entreprises%';
}
add_action( 'init', 'custom_search_base' );
function custom_search_url() {
    if ( is_search() && !empty( $_GET['s'] ) ) {
        wp_redirect( home_url( '/entreprises/' ) . urlencode( get_query_var( 's' ) ) );
        exit();
    }  
}
add_action( 'template_redirect', 'custom_search_url' );