Typecho配置伪静态
提示(重写功能检测失败,请检查你的服务器设置)选择仍然启用此功能勾选即可
- 后台更多设置-永久链接,启用地址重写功能
网站根目录下创建.htaccess,添加以下内容
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]修改nginx.conf文件,在server模块中添加以下内容
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}
更新时间 「2023-03-29 18:41:01」 添加「Typecho」标签,已有 348 位阅读。