diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-08-04 11:27:53 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-08-04 11:27:53 +0200 |
commit | bc7406348b93b6d6f83d9ef145ac613f7bdc18b7 (patch) | |
tree | 7d3df7d47d6037b2b87e1c2400520e032c8f3d3d | |
parent | e1cf53ef1845cdfbb315a8b1e1d5b820431eef8c (diff) |
Fix regex to allow program/resources/foo to be accessible
-rw-r--r-- | program/.htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/.htaccess b/program/.htaccess index c4f456c58..be9e7e25a 100644 --- a/program/.htaccess +++ b/program/.htaccess @@ -1,4 +1,4 @@ <IfModule mod_rewrite.c> RewriteEngine On -RewriteRule !^js|resources$ - [F] +RewriteRule !^(js|resources) - [F] </IfModule> |