how to block a file in cpanel?

6
How to Block The Control Access of a folder in Wordpress

Upload: david-rajah-selvaraj

Post on 10-May-2015

496 views

Category:

Technology


5 download

TRANSCRIPT

Page 1: How to block a file in cpanel?

How to Block The Control Access of a folder in Wordpress

Page 2: How to block a file in cpanel?

Proceed with the following Steps:

1. For Example I have home/exp-site/public_html/wp

In that create a File named .htaccess

2. Start with # BEGIN WordPress

3. Write Some Rules for it namely,

Page 3: How to block a file in cpanel?

Proceed with the following Steps:(contd.)

For example,<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /wp(Folder_name)/RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /wp(Folder_name)/index.php [L]</IfModule>

Page 4: How to block a file in cpanel?

Under that enter the code followed below:Options -Indexesdeny from all

Page 5: How to block a file in cpanel?

If you want to Allow some of the IP,

Enter the Following code behind it,

allow from 54.18.17.168allow from 53.64.47.64allow from 25.51.5.70

Page 6: How to block a file in cpanel?

Finally end the Code with the following code,

# END WordPress