Merhaba SSL kurdum ve aşağıdaki kodlarla HTACCESS ile HTTPS yönlendirmesini yaptım fakat admin panelinde bir yere tıklayınca sayfa bulunamadı hatası alıyorum.
# BEGIN HTTPS Redirection Plugin
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# END HTTPS Redirection Plugin
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
# Begin HTTPS
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.S İTENİZ.com/$1 [R,L]
# END HTTPS