BKZ:
# BEGIN WordPress
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^(.*)$ https://domain.com/ $1 [L,R=301]
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Fakat, bir süre sonra kontrol ettiğimde ise aşağıdaki htacces ile otomatik olarak değiştirildiğini görüyorum.
BKZ:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
İsteğim ise, tüm linkler https olarak ve www.domain.com'un https://domain.com adresine yönlendirilmesini istiyorum.
Problem neyden kaynaklı olabilir acaba?