This Jetserver web hosting guide is designed for Joomla owners and includes an explanation of how SSL is enabled for the entire site within the Joomla management system. Note that you can purchase an SSL certificate and use it, or alternatively – install a free Self Signed SSL certificate. Please note: The starting point in […]
How to Install the Free Self Signed SSL?
In this Jetserver Web Hosting guide, we will explain step-by-step how to install the Self-Signed SSL certificate. This certificate will automatically be replaced within approximately 30 minutes by an Auto SSL certificate. Please note: Before you follow the steps in this guide, open a support ticket (Click Here) and make sure that Auto SSL is […]
How to Set the PHP Version per Folder?
Do you have a single domain or wish to use а different PHP version per folder? Do you have an installed PHP 5.x software in a folder/blog and want to use a PHP 7.x instead? If so, you can do this using cPanel and the .htaccess file. 1. Log into your cPanel account. 2. In […]
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 protection order allow,deny deny from all satisfy all
How to disable directory browsing using .htaccess?
For security purposes, we recommend that you to disable directory browsing on your website so no one can see the files/folders of your website. You can disable Directory Browsing by adding this line to your .htaccess file. Options -Indexes
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,deny deny from IP-ADDRESS allow from all Replace “IP-ADDRESS” with the IP Address you want to block.
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 on Redirect 301 […]
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 on RewriteRule ^sitemap/$ /files/folder/sitemap.html [L]