Cài ssl cho website rồi, giờ muốn user vào link http và www tự nhảy sang https none www thì cấu hình .htaccess thế nào nhỉ?
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [L]
Title:
Chuyển http sang https và www sang none www
Description:
Cài ssl cho website rồi, giờ muốn user vào link http và www tự nhảy sang https none www thì cấu hình .htaccess thế nào nhỉ?
...
Rating:
4