<IfModule mod_php.c>
  php_value upload_tmp_dir ../runtime/temp
  php_value sys_temp_dir ../runtime/temp
  php_flag display_startup_errors Off
</IfModule>

<IfModule mod_rewrite.c>
  DirectoryIndex index.php index.html
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
