malaminamane/oldtrain/master/.htaccess - Htaccess File

malaminamane/oldtrain/master/.htaccess

SetEnv SHORT_OPEN_TAGS 0
SetEnv REGISTER_GLOBALS 0
SetEnv MAGIC_QUOTES 0
SetEnv SESSION_AUTOSTART 0
SetEnv ZEND_OPTIMIZER 1
SetEnv PHP_VER 5_4
 
 <IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /web
 
   RewriteCond %{REQUEST_URI} .(css|gif|ico|jpg|jpeg|js|png|swf|txt|pdf|doc|docx|mp3|svg)$
   RewriteRule ^(.*)$ $1 [QSA,L]
 
   RewriteCond %{REQUEST_URI} dev.php
   RewriteRule ^(.*)$ web/dev.php/$1 [QSA,L]
 
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^(.*)$ web/app.php/$1 [QSA,L]
 </IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache