Rewrite URL for a specific taxonomy [duplicate]

Just use the following rewrite argument in your register_taxonomy() call:

register_taxonomy( 'product_cat', 'product', array(
    'rewrite' => array(
        'with_front' => false,
        'slug' => 'product/poruct-cats',
    ),

    // Other arguments
));