yilmaz70 hocam sanırım şöyle çözdüm ssl kurulumundan sonra .htaccess dosyasına
RewriteCond %{HTTPS} off
# First rewrite to HTTPS:
# Don't put www. here. If it is already there it will be included, if not
# the subsequent rule will catch it.
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# Now, rewrite any request to the wrong domain to use www.
# [NC] is a case-insensitive match
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule .* https://www. %{HTTP_HOST}%{REQUEST_URI} [L,R=301]

kodunu ekliyordum bunu ekledikten sonra böyle düşük sonuçlar veriyordu ama bu kodu silip yerine şunu ekleyince
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]

eski haline döndü :)