guys!
I tried to return error 404 when accessing some directories on a vhost. Let's say we have http://bla.com/bla1, http://bla.com/bla2, http://bla.com/bla3, etc waiting to be redirected to 404.
I used the following:
redirectmatch_dest => ['http://bla.com/bla1', ' http://bla.com/bla2', ' http://bla.com/bla3'],
redirectmatch_status => ['404', '404', '404']
But when I access the links they don't return 404. Any suggestions what is wrong here?