Yaneraz/pizzza/master/www/.htaccess - Htaccess File

Yaneraz/pizzza/master/www/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On

    #<IfModule mod_vhost_alias.c>
    #    RewriteBase /
    #</IfModule>

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
<IfModule mod_headers.c>
    <FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
        Header set Cache-Control "max-age=7200, must-revalidate"
    </FilesMatch>
</IfModule>
php_flag short_open_tag off
php_flag magic_quotes_gpc off

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache