function wpse147453_remove_child_categories_from_permalinks( $category ) {
while ( $category->parent ) {
$category = get_term( $category->parent, 'category' );
}
return $category;
}
add_filter( 'post_link_category', 'wpse147453_remove_child_categories_from_permalinks' );
RewriteEngine On
RewriteCond %{HTTP_HOST} (.*)
RewriteRule (.*) http://site.ru/$1 [R=301,L,QSA]