Saucy/saucy.se/master/src/.htaccess - Htaccess File

Saucy/saucy.se/master/src/.htaccess

RewriteEngine on
RewriteBase /

# http -> https
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

ErrorDocument 503            /maintenance.html
RewriteCond   %{REQUEST_URI} !/maintenance.html [NC]
#RewriteRule   .*             /                  [R=503,L] # Uncomment to enable maintenance status

# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

RewriteRule ^legacy/(.+)/demo$ app/modules/legacy/assets/$1 [L,NC]

# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]

# Content-Type header for Markdown files
AddType 'text/plain; charset=UTF-8' md

<IfModule mod_expires.c>

  ExpiresActive on
  ExpiresDefault                                      "access plus 1 year"

  # CSS
  ExpiresByType text/css                              "access plus 1 year"

  # Data interchange
  ExpiresByType application/atom+xml                  "access plus 1 hour"
  ExpiresByType application/rdf+xml                   "access plus 1 hour"
  ExpiresByType application/rss+xml                   "access plus 1 hour"

  ExpiresByType application/json                      "access plus 0 seconds"
  ExpiresByType application/ld+json                   "access plus 0 seconds"
  ExpiresByType application/schema+json               "access plus 0 seconds"
  ExpiresByType application/vnd.geo+json              "access plus 0 seconds"
  ExpiresByType application/xml                       "access plus 0 seconds"
  ExpiresByType text/xml                              "access plus 0 seconds"

  # Favicon (cannot be renamed!) and cursor images
  ExpiresByType image/vnd.microsoft.icon              "access plus 1 year"
  ExpiresByType image/x-icon                          "access plus 1 year"

  # HTML
  ExpiresByType text/html                             "access plus 0 seconds"

  # JavaScript
  ExpiresByType application/javascript                "access plus 1 year"
  ExpiresByType application/x-javascript              "access plus 1 year"
  ExpiresByType text/javascript                       "access plus 1 year"

  # Manifest files
  ExpiresByType application/manifest+json             "access plus 1 year"

  ExpiresByType application/x-web-app-manifest+json   "access plus 0 seconds"
  ExpiresByType text/cache-manifest                   "access plus 0 seconds"

  # Media files
  ExpiresByType audio/ogg                             "access plus 1 year"
  ExpiresByType image/bmp                             "access plus 1 year"
  ExpiresByType image/gif                             "access plus 1 year"
  ExpiresByType image/jpeg                            "access plus 1 year"
  ExpiresByType image/png                             "access plus 1 year"
  ExpiresByType image/svg+xml                         "access plus 1 year"
  ExpiresByType image/webp                            "access plus 1 year"
  ExpiresByType video/mp4                             "access plus 1 year"
  ExpiresByType video/ogg                             "access plus 1 year"
  ExpiresByType video/webm                            "access plus 1 year"

  # Web fonts

  # Embedded OpenType (EOT)
  ExpiresByType application/vnd.ms-fontobject         "access plus 1 year"
  ExpiresByType font/eot                              "access plus 1 year"

  # OpenType
  ExpiresByType font/opentype                         "access plus 1 year"

  # TrueType
  ExpiresByType application/x-font-ttf                "access plus 1 year"

  # Web Open Font Format (WOFF) 1.0
  ExpiresByType application/font-woff                 "access plus 1 year"
  ExpiresByType application/x-font-woff               "access plus 1 year"
  ExpiresByType font/woff                             "access plus 1 year"

  # Web Open Font Format (WOFF) 2.0
  ExpiresByType application/font-woff2                "access plus 1 year"

  # Other
  ExpiresByType text/x-cross-domain-policy            "access plus 1 week"

</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTPS, REQUEST_FILENAME, REQUEST_URI, SERVER_NAME

Comments

Apache