Overwrite URL on blog posts

If you are not using Custom Post Types the following in your permalink settings should work just fine.

/blog/%postname%/

Screenshot

(Below can still be applicable depending on your use of custom post types)

Keep your regular permalinks on blog like you have it in settings. And in your custom post type arguments the “with_front” Boolean field will help you achieve what you are looking for.

...
'rewrite' => array(
    'with_front' => false,
    'slug' => 'your-slug'
),
...

More info about rewrites here http://codex.wordpress.org/Function_Reference/register_post_type