ssl yardım
3
●142
- 31-03-2018, 09:39:56https://tr.wordpress.org/plugins/really-simple-ssl/
bu eklentiyi kur ve aktif et wordpress genel ayarlar dan da domain http yerine https yap - 31-03-2018, 09:40:59Üyeliği durduruldu.htaccess adında bir dosya aç ve aşağıdaki komutları içine yazarak ftp'den wordpressin kurulu olduğu dizine at.Aşağıdaki SİTENİZ yazan yere site adresin gelecek.
# BEGIN HTTPS Redirection Plugin <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> # END HTTPS Redirection Plugin # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # Begin HTTPS <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.SİTENİZ.com/$1 [R,L] </IfModule> # END HTTPS