2014 m. sausio 23 d., ketvirtadienis

htaccess - puslapio nukreipimas į www versija arbe be www, arba į https

Per .htaccess failą lankytoją galime nukreipti į žiniatinklio adresą :
be www priešdėlio:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
su www priešdėliu:
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
į https versiją:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
pašalinti iš URL adreso galo index.php:
RewriteCond %{THE_REQUEST} /index.php HTTP
RewriteRule (.*)index.php$ /$1 [R=301,L]

Komentarų nėra:

Rašyti komentarą