OmondiKevin/ADTPro/master/.htaccess - Htaccess File

OmondiKevin/ADTPro/master/.htaccess

AddType text/cache-manifest .appcache

<IfModule mod_rewrite.c>
  RewriteEngine On
  #RewriteBase /ADT

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^ index.php [QSA,L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
    
</IfModule> 

<IfModule mod_deflate.c>
  # enable data compression with the mod_deflate module
    <filesMatch ".(js|css|html|php)$">
        SetOutputFilter DEFLATE
    </filesMatch>
</IfModule>

php_value max_input_vars 10000

On Github License

Files

Download PDF of Htaccess file
DEFLATE, REQUEST_FILENAME

Comments

Apache