Post

Replies

Boosts

Views

Activity

Reply to include all, exclude some apple-app-site-association
The first rule matching makes it stop and apply the rule (exclusion or not). So you have to have your exclusions first: { "/" : "/e/*", "exclude": true, "comment": "Exclude matches any URL whose path starts with /e/" }, { "/": "/user/*", "exclude": true, "comment": "Exclude matches any URL whose path starts with /user/" }, { "/": "/*", "comment": "Matches any URL whose path starts with /" } ]
Jun ’23