Skip to content

Instantly share code, notes, and snippets.

@howardroark
Created June 19, 2015 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save howardroark/ea575d24645b231540f8 to your computer and use it in GitHub Desktop.
Save howardroark/ea575d24645b231540f8 to your computer and use it in GitHub Desktop.
index.html rewrites for Craft CMS
# Rewrite rules to allow AWS cloudfront to cache CMS pages
location = /index.html {
rewrite /index.html /index.php?p=index last;
}
location ~ index.html$ {
rewrite ^/(.*)/index.html$ /index.php?p=$1? last;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment