Posts tagged as:

Wordpress security

Tips 5 Langkah Proteksi Wordpress Anda

by wp-magz on September 12, 2008

1. Create .htaccess

Contoh dibawah jika anda menggunakan permalink yang sudah di modif

<IfModule mod_rewrite.c>
RewriteEngine On
php_flag register_globals off
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

<Files wp-config.php>
Order Deny,Allow
Deny from All
</Files>

2. Create Robots.txt

User-agent: *
Allow: /
Disallow: /wp-admin/
Disallow: /wp-includes/
Disallow: /wp-content/

3. Create file index.html

Create fileĀ  index.html kosong di plugin folder wp-content/plugins/index.html [click to continue...]

{ 1 comment }