On Thu, Feb 7, 2019 at 10:25 PM Darryl Philip Baker <[email protected]> wrote: > > What I want is a conditional rewrite or redirect rule which would send > requests for http://www.example.com/foo/bar/{any file or path} except > http://www.example.com/foo/bar/file.html to > http://www.example.com/foo/bar/file.html. > > Anyone solved this already and is willing to share?
No need for a rewrite rule, something like: RedirectMatch permanent ^/foo/bar/(?!file.html$)(.*)$ http://www.example.com/foo/bar/file.html (where (?!...) stands for not followed by ...) Regards, Yann. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
