Die www. redirect funktioniert.
Ich habe gesehen, dass Du von http://www.kico4u.de, https://www.kico4u.de und http://kico4u.de zu https://kico4u.de weiterleiten willst. Mit ein wenig Nachdenken und Vergleichen kommt man da zu:
# Redirect all unsafe requests
# and requests with the 'www.' into the hostname
# to https://kico4u.de/
RewriteEngine On
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} !^kico4u\.de$
RewriteRule (.*)$ https://kico4u.de/$1 [R=301,L]