For Apache server, we will edit file .htacess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
For nginx server, we will edit conf file
server {
listen 80;
server_name your-site.com www.your-site.com;
return 301 https://your-site.com$request_uri;
}
Notice: You have to reload nginx. Reloading apache is not required!
Title:
Cấu hình tự động chuyển trang http sang https
Description:
Webserver hay dùng là apache và nginx. Sau khi cài đặt https, muốn khách vào link http cũ tự chuyển hết sang https thì phải cấu hình theo hướng dẫn...
...
Rating:
4