将我的WordPress网站重定向到HTTPS for Plesk主机
如果您在WordPress网站上拥有安全证书(SSL),则可以自动将访问者重定向到网站的安全(HTTPS)版本,以确保他们的信息受到保护。
注意:几个适用于WordPress的插件可在您安装SSL证书后自动重定向您的URL。如需WordPress插件的帮助,请参阅wp.org
如何重定向流量取决于您拥有的主机类型。
- 登录 WordPress 管理面板。
- 依次单击Settings(设置)和General(常规) 。
- 将WordPress URL和网站URL从http://coolexample.com更改为https://coolexample.com ,然后单击保存更改。
- 在您的httpdocs文件夹中创建web.config文件
- 将下列代码插入
web.config
文件并保存文件。配置> system.webServer >重写>规则>清除/ >规则名称=“重定向到https” stopProcessing =“ true”>匹配url =“(。*)” / >条件>添加输入=“{HTTPS} “模式=”关闭“ ignoreCase =” true“ / > / conditions > action type =“ Redirect” url =“https://{HTTP_HOST}{REQUEST_URI} “ redirectType =” Permanent“ / > / rule >规则名称=“主要规则” stopProcessing =“ true”>匹配url =“。*” / >逻辑逻辑条件= “ MatchAll”添加输入=“{REQUEST_FILENAME} “” MatchType =“ IsFile” negate =“ true” / >添加输入=“{REQUEST_FILENAME} “” MatchType =“ IsDirectory” negate =“ true” / > / conditions > action type =“ Rewrite” url =“ index.php / {R:0}” / > / rule > / rules > / rewrite > /system.webServer > / configuration >