对于 HTTPS, 有时您会发现您正在访问您的文章, 然后是 https 服务, 但您将会将 https 更改为 http, 您会发现他是 http 而不是跳转到 https。这是你的时间。htaccess 配置不好, Typecho 特定。htaccess 配置文件格式如下:
<IfModule mod_rewrite.c>
RewriteEngine On
#HTTP==>HTTPS
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
#伪静态
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
请确保 HTTP 跃点 https 在顶部, 否则。上述情况将会发生。