Skip to content

Instantly share code, notes, and snippets.

@wokamoto
Last active August 29, 2015 13:57
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 wokamoto/9595452 to your computer and use it in GitHub Desktop.
Save wokamoto/9595452 to your computer and use it in GitHub Desktop.
[WordPress][Apache][Nginx] xmlrpc.php を Web サーバレベルで無効にする
<Files ~ "xmlrpc.php$">
deny from all
</Files>
location ~* xmlrpc\.php$ {
log_not_found off;
return 403;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment