On Thu, Feb 7, 2019 at 10:25 PM Darryl Philip Baker <darryl.baker@xxxxxxxxxxxxxxxx> 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: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx