Mod_rewrite ssl serves nethserver test page

NethServer Version: 7.6 rev2
Module: nethserver-apache

First I enabled .htaccess
httpd.conf > /var/www/html

AllowOverride All
Options -Indexes
Options -FollowSymLinks

These are the files in my WebRoot:
ls -a /var/www/html
index.html .htaccess style.css .well-known

My htaccess shows the following:
/var/www/html/.htaccess

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

https://domain.tld/ :

index.html

http://domain.tld/ (Note the missing s):

Nethserver is successfully installed.

Now the problem is that, on entering the http link it shows the default “Nethserver is installed” page. When I go to the http over TLS it correctly shows the index.html.
The normal behavior would be to redirect to the TLS-enabled page.

Update:
It now shows the Nethserver page when going to http and https and it also doesn’t redirect.

It should work if you enable FollowSymLinks again.