- How to disable
.htaccess
for some folders? - Example I want exclude htaccess for my
admin
folder - Let me know..
views:
180answers:
2
+1
A:
You could use this rule to stop the rewriting process for that specific URL path prefix:
RewriteEngine on
RewriteRule ^admin($|/) - [L]
Gumbo
2009-11-11 15:12:08
thanks this worked :)
bob
2009-11-11 15:47:14