Http URL不会重定向到等效的https URL,而是首页

时间:2019-12-22 21:27:01

标签: .htaccess ssl redirect https http-redirect

我刚刚意识到我的网站存在http url重定向问题。更具体地说,如果有人访问http://premiummediasolutions.com/online-advertising/,他们将被重定向到主页,而不是https(https://premiummediasolutions.com/online-advertising/)中的等效页面。所有页面都会发生这种情况。

到目前为止,我尝试将以下代码添加到.htaccess文件中,但是其中的任何一个都没有运气。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example1\.com [NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

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

有人可以协助吗?非常感谢。

0 个答案:

没有答案