Merhaba arkadaşlar Htaccess'den http'yi https ye yönlendiremiyorum.

//Edit ( Sorunu Çözdüm)

Bu değiştiremeden önceki .hteacces

# BEGIN WpFastestCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^slitheriomods.com
RewriteRule ^(.*)$ http\:\/\/www\.slitheriomods\.com\/$1 [R=301,L]
Buda yeni hali
# BEGIN WpFastestCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 80
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTPS} =on
RewriteCond %{HTTP_HOST} ^www.slitheriomods.com
Yönlendirme sorunu yaşayanlar bunu kullanabilirler.