Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. In /.htacces
  2.  
  3. add
  4.  
  5. <Files xmlrpc.php>
  6. order deny,allow
  7. deny from all
  8. allow from YOUR_IP_ADDR_HERE
  9. </Files>
  10.  
  11. <Files wp-login.php>
  12. order deny,allow
  13. deny from all
  14. allow from YOUR_IP_ADDR_HERE
  15. </Files>
  16.  
  17.  
  18. Create
  19.  
  20. /wp-admin/.htacess
  21.  
  22. add
  23.  
  24. order deny,allow
  25. deny from all
  26. allow from YOUR_IP_ADDR_HERE
  27.  
  28.  
  29. Create
  30.  
  31. /wp-content/uploads/.htaccess
  32.  
  33. Add
  34.  
  35. <Files *.php>
  36. deny from all
  37. </Files>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement