Skip to content

Instantly share code, notes, and snippets.

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 steveosoule/1f458dde9e26ff5a0682 to your computer and use it in GitHub Desktop.
Save steveosoule/1f458dde9e26ff5a0682 to your computer and use it in GitHub Desktop.
Remove Query Strings From Static Resources To Improve Page Speed
# Allow Versions in file names to avoid using query strings
RewriteCond %{REQUEST_URI} (.*)\.\d+\.(css|js)$
RewriteRule ^(.*)$ %1.%2 [L]
# This allows for:
# /css/styles.min.1234567890.css
# /js/scripts.1234567890.js
@jodyshop
Copy link

Thanks :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment