RE: Disallow path info

2015-03-25 Thread Szekeres Jr., Edward
Sorry for late or redundant response Look into Apache rewrite module, you can get fairly fine tooth control there, I use it to disallow web based access to mount points that have to be served from within the server accessible tree…. edward From: Lathan Bidwell [mailto:lat...@andrews.edu]

RE: Disallow path info

2015-03-25 Thread Szekeres Jr., Edward
I am not sure why something as simple as this would be considered "dicing and slicing", simply blocks any requests with "path[any character]info" in them RewriteEngine On RewriteCond %{REQUEST_URI} ^.*(path.info).* [NC] RewriteRule ^(.*)$ - [F] -Original Message- From: Phill