Created
February 23, 2018 11:27
-
-
Save bigandy/ccf23c9ef619f39fd8037d30f3c53938 to your computer and use it in GitHub Desktop.
nginx redirect rule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// nginx redirect rule | |
if ($request_uri ~* \.(js|css|png|jpg|jpeg|gif|svg)) { | |
rewrite ^/(.+)\.(?:[a-z0-9]+)\.(js|css|png|jpg|jpeg|gif|svg) https://$host/$1.$2 permanent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
as in :
location ~* ^(.*/(wp-content)/themes/(venture-harbour)/)(.+).[0-9a-z]+.(js|css|png|jpg|jpeg|gif|svg)$ {
try_files $uri $1$2.$3;
}