how to block a file in cpanel?

Post on 10-May-2015

496 Views

Category:

Technology

5 Downloads

Preview:

Click to see full reader

TRANSCRIPT

How to Block The Control Access of a folder in Wordpress

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,

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>

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

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

Finally end the Code with the following code,

# END WordPress

top related