×


Blog


Installing Netdata and secure using Nginx basic http authentication

Netdata is very essential utility application which provides a real-time monitoring service for Linux systems and applications by displaying interactive charts which can be viewed via a web browser.


How to Check if your Linux Memory usage is running out

It is vital for you to check if your Linux memory is running low to help your server to stay optimized.


Best method to change server hostname in Ubuntu

Setting the right hostname for a server is very important in order to resolve properly when linked to a domain name.


Update Plesk Obsidian to the latest build - Step by step guide ?

This article covers the complete procedure for updating Plesk Obsidian to the latest build.


System logs not populating in Plesk Server - How to fix this error ?

This article covers the best method to resolve System logs not populating on a Plesk Server.


Force HTTPS using .htaccess - Step by step guide ?

This article covers how to edit your .htaccess file and redirect all HTTP traffic to HTTPS which is the safe version of your website.


How to configure HTTPS for WordPress websites using .htaccess ?

1. Login into wp-admin and go to “Settings -> General”. Make sure the URL have https.

2. From the file manager, edit your .htaccess and replace the WordPress rules by the following code:

# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# Rewrite HTTP to HTTPS
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://domain.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress

Note: Replace domain.com by your domain name. Make sure the position of the https Rewrite rule is same as mentioned above.