简体   繁体   中英

URL Path exclude certain sting in regular expression for rewrite rule

How to modify below regular expression for any path start with /a/ , but excluding string /dk/

(^/a/(.*)$)

so that /a/remove can match, but /a/dk/ remove won't

(^(?!.*(?:/dk/|/fl/))/a/(.*)$)

您可以为此添加lookahead

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM