views:

180

answers:

2
  1. How to disable .htaccess for some folders?
  2. Example I want exclude htaccess for my admin folder
  3. Let me know..
+1  A: 

You could use this rule to stop the rewriting process for that specific URL path prefix:

RewriteEngine on
RewriteRule ^admin($|/) - [L]
Gumbo
thanks this worked :)
bob
+1  A: 

you can do something like that in your httpd.conf

<Location /admin>
 AllowOverride None
</Location>

see the documentation here

RageZ
sorry I have no access to edit the httpd.conf
bob