站点地图未重定向到 HTTPS

Sitemap not redirecting to HTTPS

需要一点帮助,我有一个网站并且已经激活了 SSL, 除站点地图页面外,所有内容都在 SSL 上,它会自动重定向到 http:// 模式而不是 https mode.I 必须手动键入 https 才能以 https 模式查看站点地图页面。 为此,我有搜索控制台 error.Search 控制台可以读取站点地图,但它显示 http error.How 将 http 重定向到 https automatically.Here 我的 .htaccess 代码。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

我正在使用 yoast SEO。

您必须启用 HTTPS。我以为 Yoast 会为你做那件事。可能是浏览器缓存?

尝试将此添加到您的 .htaccess 文件的顶部:

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