If your website is experiencing security issues, or you wish to restrict access to the site for other reasons, it’s possible to do so by creating rules in a .htaccess file or via cPanel’s IP Blocker.
Restrict access to your website using a .htaccess File
.htaccess is a configuration file used by the Apache web server. .htaccess rules override global settings for the directory in which the file is placed. You may find that .htaccess files are created automatically on your server, when you install popular web applications like WordPress, Drupal and Magento. However, if one does not exist, it can be easily created in a text editor and uploaded to your server. You can also create one directly from cPanel’s File Manager.
To get started, log in to your HostPapa Dashboard.
In the top navigation menu, select My cPanel.
Now select File Manager.
At the top right of the screen, click the Settings button.
.htaccess files are hidden from view by default. To expose them, ensure Show Hidden Files (dotfiles) is checked in the Preferences panel, then click Save.
Navigate to your website root using the left sidebar. Check to see whether a .htaccess file currently exists.
If the .htaccess file exists, highlight it and select Edit from the top menu.
Alternatively, you can create a new .htaccess file by selecting + File.
In the New File panel that opens, enter .htaccess as the file name and select Create New File to open the cPanel text editor. If you are asked to confirm Encoding settings, leave the default option in place and click Edit.
You can now create the rules required to restrict access to your website. These rules can be configured to block all users or certain users (based on their IP address) from accessing website resources. You can also deny access to certain file types, specific files (for example, configuration files) and more.
Deny access to all files and folders through .htaccess
To prevent direct access to all files and folders on your server, create the .htaccess file in the root (top folder) of your server and add the following rule:
deny from all
Deny access to specific file types through .htaccess
If you wish to deny access to certain types of file, you can do so with the following rule. This example blocks access to .php files.
<Files ~ "\.php$">
Order allow,deny
Deny from all
</Files>
Simply change the file extension in the first line of the rule for other file types. For example, this rule blocks access to .inc files:
<Files ~ "\.inc$">
Order allow,deny
Deny from all
</Files>
Deny access to a specific file through .htaccess
Blocking access to a specific file is performed using the following rule:
<Files config.php>
order allow,deny
Deny from all
</Files>
This example targets a config.php file held in the same directory as the .htaccess file. To change the target, replace config.php in the first line with your chosen filename.
Deny access from specific IP addresses through .htaccess
If you wish to block a specific user from accessing your website, you can do so using their IP address or the domain name from which they’re visiting. Use the following rule (replacing the numbers with the user’s IP address):
deny from 123.456.789.123
To deny access to a block of IP addresses, simply omit the last octet from the IP address:
deny from 123.456.789.
This blocks access to anyone using an IP in the range from 123.456.789.0 to 123.456.789.255.
Deny access from specific domains through .htaccess
Denying access via links from specific domains (e.g. www.problemdomain.com) is also possible through .htaccess. The following rule will display a 403 Forbidden error to any user accessing your site from a link hosted on the targeted domain:
SetEnvIfNoCase Referer "problemdomain.com" bad_referer
Order Allow,Deny
Allow from ALL
Deny from env=bad_referer
Change the domain in the first line of the rule to target the domain you wish to block. For a more subtle approach, this rule displays a 500 Internal Server Error for anyone linking from the target domain:
RewriteEngine on
RewriteCond %{HTTP_REFERER} example\.com [NC,OR]
RewriteRule .* - [F]
Restrict access to your website using cPanel’s IP Blocker
An alternative way to deny access to your website is via the cPanel IP Blocker feature. Head to My cPanel in your HostPapa Dashboard and access the Security section.
IP Blocker provides less flexibility than creating .htaccess rules but is easier to use. For example, you can block access to your website by IP address, IP address range or domain name, but you cannot target specific files or file types.
In the Add an IP or Range field, enter the IP address, IP address range or domain for which you wish to block access and click Add.
Remove access restrictions through .htaccess
If you wish to remove access restrictions held in your .htaccess file, simply delete the rule from the file in cPanel File Manager’s text editor and save the file.
Deny access from IP addresses through cPanel’s IP Blocker
IP Blocker works in a similar way to restricting access through .htaccess. You can specify IP addresses in the following formats:
- Single IP Address: 192.168.0.1
- Range: 192.168.0.1-192.168.0.40
- Implied Range: 192.168.0.1-40
- CIDR Format: 192.168.0.1/32
- IP Block: 192.
IP Blocker checks the validity of the IP address format as you type. Enter the IP address or range and click Add.
Deny access from specific domains through cPanel’s IP Blocker
To block traffic linking to your website from a specific domain, enter the domain name in the Add an IP or Range field.
cPanel will reconcile the domain name with its IP address via a lookup. If the IP address cannot be found, you will not be able to block the domain.
Manage blocked IP addresses and domains through cPanel’s IP Blocker
At the bottom of the IP Blocker page, you’ll see a section named Currently-Blocked IP Addresses. This provides a list of IP addresses that are currently blocked from accessing your server. To lift access restrictions, use the Delete button next to each IP address or range.
For additional assistance, please don’t hesitate to open a support ticket from your HostPapa Dashboard.
Leave A Comment?