Với những lỗi trang web có thể do file .htaccess gây ra, các bạn có thể chỉnh sửa lại nội dung file theo mẫu sau.
*Lưu ý: nên lưu lại file gốc theo 1 tên khác (ví dụ: .htaccess => .htaccess.bak)
# BEGIN WordPress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
# http redirect to https
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Sau đó, các bạn lưu lại tệp tin và tải lại web.
Chúc các bạn thành công!