Windows 主機 (Plesk) 說明

我們已盡最大努力為您翻譯本頁面。 我們也有提供英文頁面。

將我的WordPress網站重新導向至Plesk主機的HTTPS。

如果您的WordPress網站上有安全憑證(SSL),您可以自動將訪客重新導向至安全(HTTPS)版本的網站,確定訪客的資訊受到保護。

注意: WordPress提供多種外掛程式,可以在您安裝SSL憑證後自動重新導向網址。如需WordPress外掛程式的相關協助,請參閱wp.org

重新導向流量的方法要視您的主機類型而定。

  1. 請登入您的 WordPress 管理面板。
  2. 按一下[設定] ,然後按一下[一般]
  3. 將您的WordPress網址網站網址http://coolexample.comhttps://coolexample.com ,然後按一下儲存變更
  4. 在您的httpdocs資料夾中建立web.config檔案
  5. 將下列程式碼插入web.config檔案並儲存檔案。
    設定> system.webServer >重寫>規則>清除/ >規則name =“重新導向至https” stopProcessing =“ true”>符合url =“(。*)” / >條件>新增input =“{HTTPS} “ pattern =” off“ ignoreCase =” true“ / > /條件> action type =“ Redirect” url =“https://{HTTP_HOST}{REQUEST_URI} “重新導向類型=”永久“ / > / rule >規則名稱=“主要規則” stopProcessing =“ true”>符合url =“。*” / >條件LogicalGrouping =“ MatchAll”>新增input =“{REQUEST_FILENAME} “” matchType =“ IsFile” negate =“ true” / >新增input =“{REQUEST_FILENAME} “” matchType =“ IsDirectory” negate =“ true” / > /條件> action type =“ Rewrite” url =“ index.php / {R:0}” / > / rule > / rules > / rewrite > /system.webServer > / configuration >

更多資訊