It's probably best to register a new post type for this. In custom post types you can easily control the url structure. Use the register_post_type function for this.
In this function you can add a rewrite
variable. This variable controls the slug / url structure. Check out this example:
function insight_init() {
register_post_type( 'insight', array(
'labels' => array(),
'public' => true,
'hierarchical' => false,
'show_ui' => true,
'show_in_nav_menus' => true,
'supports' => array( 'title', 'editor' ),
'has_archive' => false,
'rewrite' => array('slug' => 'city/local')),
'query_var' => true,
'menu_icon' => 'dashicons-analytics',
) );
}
add_action( 'init', 'insight_init' );