Re: [users@httpd] Redirect only if 2 conditions

2019-09-25 Thread Eric Covener
On Wed, Sep 25, 2019 at 6:23 AM Luis Speciale wrote: > > Hi > > I want to redirect (in my local server) all the external visitors that don't > ask for an existing directory. > > !='/Library/WebServer/Documents/YES/'"> > RedirectMatch ^/((?!index_ext.html).*)$ /index_ext.html > > > But AND (

[users@httpd] Redirect only if 2 conditions

2019-09-25 Thread Luis Speciale
Hi I want to redirect (in my local server) all the external visitors that don't ask for an existing directory. !='/Library/WebServer/Documents/YES/'">     RedirectMatch ^/((?!index_ext.html).*)$ /index_ext.html But AND (&&) doesn't seem to work. I'm always redirected to /index_ext.html Wha