手机显示无证书RedirectmyWordPresswebsitetoHTTPSforLinuxHosting
(2022-10-27 15:33:15)
-
- Log into
your WordPress Dashboard.
- Hover over Settings on the left navigation panel, then
select General.
- Locate the following fields on the new page:
-
- WordPress Address (URL)
- Site Address (URL)
- In each field, update your URLs to include https instead
of http.
-
- For example, http://coolexample.com would become
https://coolexample.com.
- Scroll down to the bottom of the page and select Save
Changes.
- Open your current
.htaccess
file in the
/public_html/
folder with the
cPanel file manager for editing. If you don't see your
.htaccess file, make sure you can
view hidden files. If you don't already have a
.htaccess
file, you'll need to create one.
- Insert the following code at the top of your
.htaccess
file:
-
# BEGIN GD-SSL
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_USER_AGENT} ^(.+)$
RewriteCond %{SERVER_NAME} ^coolexample\.com$ [OR]
RewriteCond %{SERVER_NAME} ^www\.coolexample\.com$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Header add Strict-Transport-Security "max-age=300"
# END GD-SSL
- Select Save Changes at the top-right corner of the
screen.
喜欢
0
赠金笔
加载中,请稍候......