FataMorganaCMS/FataMorgana/master/.htaccess - Htaccess File

FataMorganaCMS/FataMorgana/master/.htaccess

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>

<IfModule mod_setenvif.c>
  SetEnv TZ Europe/Moscow
</IfModule>

ServerSignature Off

AddDefaultCharset UTF-8

<ifModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
</ifModule>

<IfModule mod_gzip.c>
  mod_gzip_on         Yes
  mod_gzip_dechunk    Yes
  mod_gzip_item_include file    .(html?|txt|css|js|php|pl)$
  mod_gzip_item_include mime    ^text.*
  mod_gzip_item_include mime    ^application/x-javascript.*
  mod_gzip_item_exclude mime    ^image.*
  mod_gzip_item_exclude rspheader  ^Content-Encoding:.*gzip.*
</IfModule>

# Internal Server Error
ErrorDocument 500 /errors?e=500
# Not Implemented
ErrorDocument 501 /errors?e=501
# Bad Gateway 
ErrorDocument 502 /errors?e=502
# Service Unavailable 
ErrorDocument 503 /errors?e=503
# Gateway Timeout
ErrorDocument 504 /errors?e=504

On Github License

Files

Download PDF of Htaccess file
DEFLATE, REQUEST_FILENAME, TZ

Comments

Apache