Bolaxax/lidiun-package/master/app/public/.htaccess - Htaccess File

Bolaxax/lidiun-package/master/app/public/.htaccess

order allow,deny
allow from all

DirectoryIndex index.php

# Insert filter 
<IfModule mod_filter.c>
  AddOutputFilterByType DEFLATE application/atom+xml 
  application/javascript 
  application/json 
  application/rss+xml 
  application/vnd.ms-fontobject 
  application/x-font-ttf 
  application/x-web-app-manifest+json 
  application/xhtml+xml 
  application/xml 
  font/opentype 
  image/svg+xml 
  image/x-icon 
  text/css 
  text/html 
  text/plain 
  text/x-component 
  text/xml
</IfModule>

# This code is to separate with slash the parameters
rewriteEngine on 
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php?uri=$1

On Github License

Files

Download PDF of Htaccess file
DEFLATE, REQUEST_FILENAME, SCRIPT_FILENAME

Comments

Apache