Benzer bir şekilde, sitenizin http:// ve https:// sürümleri varsa, her bir sürümü ayrı birer site olarak eklemeniz gerekir. Kaynak

https' nin seoya etkisi http://googlewebmastercentral.blogspot.com.tr/2014/03/more-precise-index-status-data-for-your.html

eğer wordpress için ssl eklemek istiyorsan .htaccess'e bunları yazman yeterli

ayrıntılar için kaynak



# BEGIN WordPress

RewriteEngine On

RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]


# END WordPress