2nd Problem with my new page

Hello everybody
I created my new Homepage (www.80salive-band.de) and already upload it.

My Problem:
Now I can See in front of my webadress a symbol.
This symbol says, that my website is not save (secure). Why is this Symbol there? No YouTube video on the 1st site!

Thanks for helping

Hello :wave:t2:

The issue is that your site allows connections over HTTP and does not automatically redirect visitors to HTTPS (which provides a secure connection, unlike HTTP).

According to your hosting provider’s documentation (Website trotz SSL-Zertifikat unsicher | STRATO), the simplest way to force redirection to HTTPS is by manually configuring the .htaccess file located in your server’s files. Here’s how to do it:

  1. Access your server and go to the public_html directory (or the root folder where your site files like index.html are located) and look for a file named .htaccess.

  2. If the file already exists, download it to your computer for editing, but be careful not to delete anything that’s already in it. If the file doesn’t exist, you can create one directly on your computer. Simply open a text editor (like TextEdit), then save the file under the name .htaccess (without any extension).

  3. Open the .htaccess file with your text editor, then add or modify the content as follows:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  1. Save and upload the file: Once the modifications are done, save the file and upload it to the public_html directory (or the root) of your server via FTP.

This will automatically redirect visitors from HTTP to HTTPS for all pages of the site, and “Not Secure” should no longer appear.

1 Like

Thank you - no problem anymore

1 Like