[Apache] LocationMatch Directive woes

Caporegime
Joined
18 Oct 2002
Posts
29,493
Location
Back in East London
Trying to setup a LocationMatch for anything on the root location ('/'), but does not equal '/tinymce'

Thus far I have tried the regex patterns:
Code:
<LocationMatch ^/.*(?:<!tinymce)$>
<LocationMatch /.*(?:<!tinymce)>
<LocationMatch /[^(tinymce)]*>
None work.. tried all with quotes too. :|

Can anyone advise?
 
Fixed:
Code:
<Location /tinymce>
  ProxyPass !
</Location>
<Location />
  ProxyPass http://127.0.0.1:9090/seaside/
    ProxyPassReverse http://127.0.0.1:9090/seaside/
</Location>
 
Back
Top Bottom