I've got an OpenCart site, but need to create an addtional /test directory which is accessible.
By default, all requests are sent to OpenCart. I'm trying to make it send all except /test. I've tried a few suggestions on this site already, but either nothing happens, or I get a 500 Internal Server Error.
This is the rewrite part of the OpenCart provided .htacccess:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
I think I need a line like the following after RewriteBase, but can't get anything working yet.
RewriteCond %{REQUEST_URI} !^/test
Thanks!
RewriteCond %{REQUEST_FILENAME} !-fandRewriteCond %{REQUEST_FILENAME} !-dare conditions that say if the request is not a file and not a directory, the proceed. Otherwise it will not rewrite. – nachito Sep 28 '11 at 18:37