Hướng dẫn chuyển hướng http sang https

Khi website của quý khách đã được cấu hình sử dụng SSL(https) thì lúc này những truy cập của người dùng vào website cần được ép buộc chuyển sang https. Bài viết này sẽ hướng dẫn quý khách cách cấu hình file .htaccess để tự động chuyển hướng từ http sang https. 


1. Đối với hosting Linux & Cpanel/DirectAdmin.

Để thực hiện quý khách vui lòng thêm đoạn code bên dưới vào file .htaccess

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]



2. Đối với hosting Windows & Plesk.

Để thực hiện quý khách vui lòng thêm đoạn code sao vào file web.config.

<configuration>
<system.webServer>
<rewrite>
    <rules>
     <rule name="HTTP to HTTPS redirect" stopProcessing="true">
     <match url="(.*)" />
     <conditions>
          <add input="{HTTPS}" pattern="off" ignoreCase="true" />
     </conditions>
     <action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}" />
</rule>  
    </rules>
</rewrite>
</system.webServer>
</configuration>


Chúc quý khách thành công!

  • 3 Users Found This Useful
Was this answer helpful?

Related Articles

The path to the root directory and tools in Unix

1. The path to the root directory in Unix: When you successfully register a hosting account with...

Guidline to password protect web directories

1. Purpose: Sometimes you want to restrict other people access to the folder that contains...

Change the Password for cPanel

1. How to change the password for cPanel:  Access to...

The services managed and supported by Cpanel

The services provided by the cPanel management system and support include: Apache: cPanel allows...

Apache status missing in cPanel WHM

1. Reason Error  directive server-status in the Apache’s configuration file httpd.conf 2. Fix:...

Powered by WHMCompleteSolution