View Single Post
  #7  
Old 10-22-2012, 04:36 AM
NiteWave NiteWave is offline
LiteSpeed Staff
 
Join Date: Sep 2009
Posts: 2,226
there are 2 kinds of rewrite rules: per directory and per server.
the one you post is per server rule. in .htaccess, should use per directory.

in this case, please try following:
Code:
RewriteEngine On
RewriteCond %{ORG_REQ_URI} ^/data/
RewriteRule ^data/(.*) - [R=403,F]
Reply With Quote