I have a .htaccess rule that will redirect any requests, starting at the directory containing the .htaccess file, to index.php:
RewriteRule ^$ index.php [L]
However, this will redirect
anything, so /potato or /pot/head/eater will both be redirected. I need a way to redirect
everything that does not begin with cookbook/. Can anyone help me out here? Thanks.