Blogging, Technology Me and Analyzing Modern Design
24 Aug
Simple Way To secure your Wordpress Blog
Below some of tips to secure your Wordpress blog being attacked by hacker or other “hijacker” that already aim and have bad attention on your blog. You can try these simple tips, yet simple but useful as your blog defend and make your blog more secure.
Tip 1 :Remove Wordpress ‘version string’ in your theme files
Explanation: Hide the version number of your Wordpress such that it will be hard for hacker to find security loopholes for the specific version of Wordpress.
Tip 2 :Place empty ‘index.html’ file in the plugins folder
Explanation: Hide the plugins used by your Wordpress blog. It uses the same concept as above which is to hide security loopholes in the plugins.
Tip 3: Upload a copy of .htaccess file in the wp-admin folder
Explanation: Prevent files in wp-admin from being accessed by hackers by limiting the access to this folder by IP address (means that the access is limited to the server owner/user only).
Thanks to bloganything for passing us the three Wordpress security tips.
You can also disallow users pretending to be search engine/ search engines from crawling the core Wordpress folders by putting these in your robot.txt file (upload the file to root of your Wordpress installation folder when you’ve finished).
# This rule means it applies to all user-agents
User-agent: *
# Disallow all directories and files within
Disallow: /wp-admin/
Disallow: /wp-includes/
--