pipaslot/forms/master/demo/.htaccess - Htaccess File

pipaslot/forms/master/demo/.htaccess

php_value upload_max_filesize 50M
php_value post_max_size 50M
php_value max_file_uploads 100

# disable directory listing
Options -Indexes

# enable cool URL
<IfModule mod_rewrite.c>
  RewriteEngine On
  # RewriteBase /

  # prevents files starting with dot to be viewed by browser
  RewriteRule /.|^. - [F]

  # front controller
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule !.(js|ico|gif|jpg|png|css|rar|zip|tar.gz)$ index.php [L]
</IfModule>

# enable gzip compression
<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript text/javascript application/javascript application/json
</IfModule>

On Github License

Files

Download PDF of Htaccess file
DEFLATE, REQUEST_FILENAME

Comments

Apache