RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.bilimvetekno.com/ $1 [R,L]
Bu şekilde mi olmalı yani?
RewriteEngine on
# BEGIN WordPress
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.bilimvetekno.com $1 [R,L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Ozbe