Skip to content

Instantly share code, notes, and snippets.

@mducharme
Created June 27, 2019 19:19
Show Gist options
  • Save mducharme/a0393bf1acd2f40fde51ed2af84eb6c5 to your computer and use it in GitHub Desktop.
Save mducharme/a0393bf1acd2f40fde51ed2af84eb6c5 to your computer and use it in GitHub Desktop.
Static cache
# Serve from static (cached) file if it exists (as html or php)
RewriteCond %{DOCUMENT_ROOT}/static/$1/index.html -f
RewriteRule ^(.*)$ static/$1/index.html [L]
RewriteCond %{DOCUMENT_ROOT}/static/$1/index.php -f
RewriteRule ^(.*)$ static/$1/index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment