I'm trying to redirect all 404 messages to the index page, but only within certain directories/categories.
For example
404's within the following dir's will display as normal
www.foo.com/
www.foo.com/blah
404's in the following dir's will redirect to index.php
www.foo.com/bar
www.foo.com/fizz/buzz
So far I've found that the following will redirect all 404's to the index page with an OK status.
error_page 404 =200 /index.html
Is it possible to do this directory specifc?