None, as long as you are not a Certificate Authority, which I don’t think you are.
Correct!
You need to pick one and stick with it. From what you wrote, it looks like https://www.gnosis.ge/ is the one that works properly, so choose it. You can follow these guides if you need help.
After you’ve enabled SSL for your website, you’ll probably want to redirect all traffic on your website to the https version of your site. There are multiple ways to do that. Let’s compare some commonly used ways.
Using script configuration
Some scripts (including Wordpress) have a setting which allows you to set your website URL. By changing this URL from http://example.com to https://example.com , the script will probably redirect visitors to the https version of your site. Even if your script…
There are many ways to force www/non www, but this way requires to create /edit .htaccess file (htdocs/.htaccess)
Forcing away from www.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.yoursite.gg [NC]
RewriteRule ^(.*)$ http://yoursite.gg/$1 [L,R=301]
^^ changing that to https forces away from www. and also forces https encryption
Forcing to www.
Its basically the same thing
RewriteEngine on
Rewri…
3 Likes