Remove base from the custom post type URL [duplicate]

Add this on your register post type function:

'rewrite'         => array(
      'slug'      => 'news',
      'with_front'  => false
    ),

The “with_front => false” will remove the “blog” from the path.

Hope that it helps,
Cheers