MateoSRQ/server/master/web/.htaccess - Htaccess File

MateoSRQ/server/master/web/.htaccess

RewriteEngine on

# If a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward it to index.php
RewriteRule . index.php

<IfModule mod_deflate.c>
<FilesMatch ".(html|txt|css|js|php|pl|woff|eot|map)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
<IfModule mod_expires.c>
  ExpiresActive on

# Your document html
  ExpiresByType text/html "access plus 0 seconds"

# Media: images, video, audio
#  ExpiresByType audio/ogg "access plus 1 month"
#  ExpiresByType image/gif "access plus 1 month"
#  ExpiresByType image/jpeg "access plus 1 month"
#  ExpiresByType image/png "access plus 1 month"
#  ExpiresByType video/mp4 "access plus 1 month"
#  ExpiresByType video/ogg "access plus 1 month"
#  ExpiresByType video/webm "access plus 1 month"
#
## CSS and JavaScript
#  ExpiresByType application/javascript "access plus 1 month"
#  ExpiresByType text/css "access plus 1 month"
</IfModule>

On Github License

Files

Download PDF of Htaccess file
DEFLATE, REQUEST_FILENAME

Comments

Apache