想匹配apache 中 hello/.*中下的非 hello/admin 怎么写正则。
url类似这样:
hello/www/index.php
hello/admin
^hello/([^admin].*)$
hello/(?:[^admin].*)
上面的为什么都不可以呢
想匹配apache 中 hello/.*中下的非 hello/admin 怎么写正则。
url类似这样:
hello/www/index.php
hello/admin
^hello/([^admin].*)$
hello/(?:[^admin].*)
上面的为什么都不可以呢