wborbajr/bplus.api/master/.htaccess - Htaccess File

wborbajr/bplus.api/master/.htaccess

RewriteEngine On
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]

# ---------------------------------------------
# PHP error handling for development servers
# ---------------------------------------------
#
# DEV - off
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
#
php_flag log_errors on
php_flag ignore_repeated_errors off
php_flag ignore_repeated_source off
php_flag report_memleaks on
php_flag track_errors on
php_value docref_root 0
php_value docref_ext 0
php_value error_log log/PHP_errors.log
# [see footnote 3] # php_value error_reporting 999999999
php_value error_reporting -1
php_value log_errors_max_len 0

<Files ./log/PHP_errors.log>
  Order allow,deny
  Deny from all
  Satisfy All
</Files>

<IfModule mod_php5.c>
    #Session timeout
    php_value session.cookie_lifetime 1200
    php_value session.gc_maxlifetime 1200
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache