Web sitesinin hem http ile hem https ile çalışması web sitesinin güvenliği için olduğu kadar SEO için de iyi değildir. htaccess dosyası ile https yönlendirmesini mutlaka yapmanız gerekmektedir. Aşağıdaki kodu htaccess dosyasına eklemeniz yeterli olacaktır:
# BEGIN HTTPS Redirect
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# END HTTPS Redirect
htaccess dosyasına ekleyeceğiniz bu kod http isteklerini https'ye yönlendirir ve arama motorlarının sitenizi sadece https ile indexlemesini sağlar.