Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.htaccess rewrite folder exception

So I have the following rewrite rules:

RewriteRule ([^/]*)/([^/]*)/([^/]*)$ /index.php?grandparent=$1&parent=$2&page=$3
RewriteRule ([^/]*)/([^/]*)$ /index.php?&parent=$1&page=$2
RewriteRule ([^/]*)$ /index.php?page=$1    

But I need this to not pass to the index page for some sub-domains, so I have the following rewrite conditions before this:

RewriteCond %{REQUEST_URI} !^/css/.*$
RewriteCond %{REQUEST_URI} !^/js/.*$
RewriteCond %{REQUEST_URI} !^/admin/.*$

So that the rules will not apply when looking for any file in those directories (including files that may be in sub-directories of those directories). Yet they still keep getting rewritten to index.php.

How can I make exceptions for these directories?

like image 747
GSto Avatar asked Jan 21 '26 14:01

GSto


1 Answers

Your RewriteCond should be like this:

RewriteCond %{REQUEST_URI} ^/(admin|js|css)/ [NC]

Additionally you must use L and QSA flags in all the RewriteRule lines like this:

# skip these paths for redirection
RewriteCond %{REQUEST_URI} ^/(admin|js|css)/ [NC]
RewriteRule ^ - [L]

RewriteRule ([^/]+)/([^/]+)/([^/]+)/?$ index.php?grandparent=$1&parent=$2&page=$3 [L,QSA]
RewriteRule ([^/]+)/([^/]+)/?$ index.php?&parent=$1&page=$2 [L,QSA]
RewriteRule ([^/]+)/?$ index.php?page=$1 [L,QSA]
like image 134
anubhava Avatar answered Jan 23 '26 06:01

anubhava