Reputation: 3064
What should be my regex if I want to block everything (/*) except the folder path (ex: /folder-name)? The folder has other files too that need to be allowed.
Upvotes: 0
Views: 444
Reputation: 1997
Try this one
^/(?!folder-name(/|$)).*$
I believe, it matches everything except /folder-name
dir.
Upvotes: 2