How to create an IIS7 re-write rule for a single category
I would strongly suggest leaving IIS alone and implement your requirements in WordPress: /** * Remove category base from “newcat” permalink. * * @param string $link * @param object $term * @return string */ function wpse_175424_term_link( $link, $term ) { if ( $term->taxonomy === ‘category’ && $term->slug === ‘newcat’ ) $link = home_url( user_trailingslashit( $term->slug … Read more