Hi, I am considering using nuBuilder for business purpose; I found a hosting service providing HTTPS and I started reading its documentation, which says that I have to make sure the installed website is ready for HTTPS.
Is it straightforward to enable HTTPS on nuBuilder or will I encounter trouble?
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Is nubuilder ready for switching to HTTPS?
-
- nuBuilder Team
- Posts: 4304
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 445 times
- Contact:
Re: Is nubuilder ready for switching to HTTPS?
There is no extra or special settings needed specifically for nuBuilder for HTTPS
Re: Is nubuilder ready for switching to HTTPS?
If you encounter any errors try this site, it's useful to track down the cause of why your site may not be secure even if you are using https.
https://www.whynopadlock.com/
It's usually external links that are still http will cause your site be shown as not secure without the padlock icon but https showing in the address bar.
https://www.whynopadlock.com/
It's usually external links that are still http will cause your site be shown as not secure without the padlock icon but https showing in the address bar.
-
- Posts: 40
- Joined: Thu Jun 23, 2016 10:33 am
- Location: Edinburgh
- Contact:
Re: Is nubuilder ready for switching to HTTPS?
I believe you can force all of your pages to use HTTPS. To do this, you will need to modify your .htaccess file. (or create one if it doesn't exist)
Using the Code Editor in the File Manager, add these lines to the beginning of the .htaccess file.
Using the Code Editor in the File Manager, add these lines to the beginning of the .htaccess file.
Code: Select all
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
My Blog - cloudydatablog.net https://cloudydatablog.net/