我刚刚意识到我的网站存在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]
有人可以协助吗?非常感谢。