Cannot boot a new VPS on XenHVM node - How to resolve this error in SolusVM ?
This article covers how to resolve Cannot boot a new VPS on XenHVM node if the VMID greater than 10000. In fact, follow the guide here to resolve boot error on VPS.
SolusVM cPanel Installation unable to complete - Step by step fix ?
This article covers SolusVM cPanel Installation unable to complete error. In fact, this error happens when we do not disable SELinux in our Server.
Reinstall OS in SolusVM - Step by step guide ?
This article covers how to reinstall OS in SolusVM. In fact, this fix will help you to reinstall OS on SolusVM.
Failed to start migrated KVM VPS in SolusVM - What to do?
This article covers how to migrate and fix KVM failed to start error in SolusVM. In fact, this error happens when the iso mounted to VPS on the source server does not exist on the destination server.
Fix VM created using a User Template not booting in OnApp
This article covers how to fix VM created using a User Template not booting issue in OnApp.
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.