I have a question.
<LocationMatch "^/([^/]+)/login">
...
</LocationMatch>
Now I need to delete from the LocationMatch specific path.
for example:
/ProjectTrue1/login - it is need
/ProjectTrue1/login - it is need
/ProjectFalse1/login - it is not need
Sorry for the 开发者_StackOverflow中文版my bad English and my bad explanation.
LocationMatch "^/(?!(ProjectFalse1|ProjectFalse2|...)[^/]+/login
unclear if you meant for there to a pattern for the non-matching projects.
精彩评论