Wordpress genel ayarlardan site adresini https'li olarak düzelt.



wp-config.php dosyasına aşağıdaki kodu ekle.
define('FORCE_SSL_ADMIN', true);

htaccess dosyasına aşağıdaki kodu ekle ve sitene göre düzelt.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.yoursite.com [NC]
RewriteRule ^(.*)$ https://www.yoursite.com/ $1 [L,R=301,NC]

Kaynak: http://designmodo.com/wordpress-https/