Author:

How to restrict directory access by IP address?

In order to secure your admin area from hackers, we recommended you to allow access only from your selected IP to your admin directory. You just need to create an .htaccess file in the directory where you want to restrict access by IP Address. For example, if you have a WordPress blog installed on your […]

How to protect your .htaccess file?

For security purpose we recommended you to prevent access to your .htaccess file from unauthorized access. Add this code to your .htaccess file: # .htaccess protectionorder allow,denydeny from allsatisfy all

How to ban any IP Address via .htaccess?

If someone is trying to hack your website or you want to block their IP Address, you can add this line to your .htaccess file. order allow,denydeny from IP-ADDRESSallow from all Replace „IP-ADDRESS“ with the IP Address you want to block.

How to protect your website’s images from an external website?

External Website can use tag to display an image from your site somewhere else on the internet and The end result of this is that the other website steals your bandwidth. 1. Log into your cPanel account.2. In the „Security“ section, click on „HotLink Protection“ Icon. 3. If it displays „Hotlink protection is currently disabled„, […]

How to blacklist an IP Address to deny it access to your website?

You can lock directory with a password by using cPanel „Password Protected Directories“ option. 1. Log into your cPanel account.2. In the „Security“ section, click on „IP Address Deny Manager“ Icon. 3. Under „Add an IP address to deny“ you should enter the IP Address you wish to block.4. Click on the „Add“ button. Here […]

How to protect a folder with username and password in cPanel?

You can lock a directory with password by using the cPanel „Password Protected Directories“ Option. 1. Log into your cPanel account.2. In the „Security“ section, click on „Password Protected Directories“ Icon. 3. When a small window prompts you, chose „Document Root for“ and then click on the „Go“ button. 4. Click on the name of […]

php error: Allowed memory size of x bytes exhausted

If you are getting an error like „Allowed memory size of… in file /directory/folder/yourscript.php„, then you can use an .htaccess trick to resolve this problem. If this error does not go away even after you apply this .htaccess code, you should contact us and we will help you. Place this code in your .htaccess file […]

How to redirect a page to another page or website using .htaccess?

If a page on your website no longer exist and you want to redirect it to your new page or website then you can use the .htaccess file for redirection without waiting. Redirect from a page/directory to another domain or the main domain: Redirect from a specific page to a domain:RewriteEngine onRedirect 301 /mypage.html http://example.com […]

How to create a user-friendly URL using .htaccess?

If your website is using long URL like example.com/files/folder/sitemap.html, you can change it into „example.com/sitemap“ in .htaccess Modify this line according to your needs and then add this code to your .htaccess file. RewriteEngine onRewriteRule ^sitemap/$   /files/folder/sitemap.html [L]

Scroll to top