Month: October 2015

  • How To Use .htaccess to Redirect HTTP Traffic to HTTPS

    If your web host has implemented your new SSL certificate and everything else is in place and you are wondering how to redirect your HTTP traffic to HTTPS using a .htaccess file all you need to do is add this strip of code: RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L] This goes right under: RewriteEngine…

  • Plugin to Prevent WordPress XML-RPC Brute Force Attacks

    WordPress XML-RPC Brute Force Attacks have been in the press lately. As a result, more people are looking for a solution to prevent this sort of brute force attack on their WordPress website. Wordfence has you covered. Wordfence is the best WordPress firewall that I’ve used. If you’re not using it, install it now. The…