comparison php/.htaccess @ 2621:702b5944f782

Merge branch 'master' into vnext
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Thu, 08 Dec 2016 13:40:01 +0000
parents a3bcb8b9667d
children
comparison
equal deleted inserted replaced
2620:13a0b65143a6 2621:702b5944f782
1 # supress php errors
2 php_flag display_startup_errors off
3 php_flag display_errors off
4 php_flag html_errors off
5 php_value docref_root 0
6 php_value docref_ext 0
7 # enable PHP error logging
8 php_flag log_errors on
9 php_value error_log ./error.log
10 # prevent access to PHP error log
11 <Files error.log>
12 Order allow,deny
13 Deny from all
14 Satisfy All
15 </Files>