diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-10-11 07:39:03 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-10-11 07:39:03 +0000 |
| commit | 60f18a6712afbe2acc92aa0636436e1e868d4cd7 (patch) | |
| tree | bd3b0383d7dd5039c327026924d68a9f2ffde02f | |
| parent | 78d8de806950849f4296ea1996e0ed7e78918ec4 (diff) | |
#1485375, #1485491
git-svn-id: https://svn.roundcube.net/trunk@1973 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/.htaccess | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/roundcubemail/.htaccess b/roundcubemail/.htaccess index c98c30a8e..9f8d22c46 100644 --- a/roundcubemail/.htaccess +++ b/roundcubemail/.htaccess @@ -1,6 +1,7 @@ # AddDefaultCharset UTF-8 AddType text/x-component .htc +<IfModule mod_php5.c> php_flag display_errors Off php_flag log_errors On php_value error_log logs/errors @@ -17,15 +18,17 @@ php_value session.auto_start 0 php_value session.gc_maxlifetime 21600 php_value session.gc_divisor 500 php_value session.gc_probability 1 +</IfModule> <FilesMatch "(\.inc|\~)$"> Order allow,deny Deny from all </FilesMatch> -<IfModule mod_alias.c> - Redirect /favicon.ico /skins/default/images/favicon.ico +<IfModule mod_rewrite.c> +RewriteEngine On +RewriteRule ^favicon.ico$ skins/default/images/favicon.ico </IfModule> - + Order deny,allow Allow from all |
