Navigation Menu

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 skazhikadyadya/3d637416a3ef2a6662a6ee1dd5044c1b to your computer and use it in GitHub Desktop.
Save skazhikadyadya/3d637416a3ef2a6662a6ee1dd5044c1b to your computer and use it in GitHub Desktop.
Close WP-CONTENT and UPLOADS
location ^~ /wp-content/ {
location ~ /wp-content/[^/]*\.php$ {
return 404;
}
location ~ /wp-content/uploads/.+\.php$ {
return 404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment