我需要将单个html页面重定向到https。为此,我也试过https://stackoverflow.com/questions/16152914/redirect-single-page-http-to-https。 但它没有用。
我的网址网址格式为http://www.example.com/api/test.html
,
我需要将此 test.html 页面转换为https://www.example.com/api/test.html
请帮助。
答案 0 :(得分:1)
使用PHP
if (!preg_match("/https/i", $_SERVER['SERVER_PROTOCOL'])) {
header("Location: https://" .$_SERVER["SERVER_NAME"] ."/" . $_SERVER["REQUEST_URI"]);
die();
}
答案 1 :(得分:0)
它应该有用,
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
答案 2 :(得分:0)
您可以使用:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{THE_REQUEST} \s/+api/test\.html[\s?] [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,NE,R=301]