typecho 开启伪静态:
- 登入后台:
- 设置 永久链接:
- 设置 并启用 ‘是否使用地址重写功能’
更新/建立 .htaccess 文件 为以下内容:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
强制跳转HTTPS链接:
- 登陆后台
- 按制台 >> 个人设置 >> 设置主页地址
更新.htaccess 文件 为以下内容:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{HTTP_HOST} ^(www\.)?qq01\.com RewriteRule ^(.*)$ https://www.qq01.com/$1 [R=301,L] RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>