I know that I can negate a specific word with negative lookahead - so in my example how do I negate an actual "/checkout/payment" but accept only when have the word "/checkout/"?
What I need exactly:
/itempage/ - not match
/product/model - not match
/checkout/ - match
/checkout/shipping - match
/checkout/payment - not match