如何将 woocommerace 网站从 http 转移到 https

How to move a woocommerace site over from http to https

我最近在我的网站上安装了 SSL,现在我在 http 和 https 上有重复的内容。我 运行 宁 wordpress 与 woocommerace 我想整个网站只是 运行 https。我该如何着手将其更改为仅显示 https 内容。我猜它与带有重定向的 .htaccess 文件有关,但我不确定是什么。

这对我有用...

RewriteCond %{HTTPS} off 
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC]
RewriteRule (.*) https://%1%{REQUEST_URI} [L,R=301]