Selamlar
wordpress için htaccess kodu araştırdım ama hostta bi türlü çalışmadı acaba elinizde
www.
https://
http://
http://www.
bunları
https://www.siteadi.com yönlendirme kodu varmıdır
Bütün link girişlerini https://www. yönlendirme htaccess kodu arıyorum
6
●867
- 11-08-2018, 19:24:02RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]ELFDaily adlı üyeden alıntı: mesajı görüntüle
- 11-08-2018, 19:45:06
RewriteEngine On 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] - 11-08-2018, 19:52:37malesef attığınız kod tüm urlleri https:// yönlendirdi ben https://www. istemekteyimerkanakgun adlı üyeden alıntı: mesajı görüntüle
- 11-08-2018, 19:56:49en sondaki 2 satırın başına # koyman yeterli.ELFDaily adlı üyeden alıntı: mesajı görüntüle