800M

20 object(s)
 

Typecho伪静态设置——解决后台等404错误

将Typecho和WordPress的伪静态合二为一就行!

#include rewrite/typecho.conf;
# 伪静态规则开始
if (!-e $request_filename) {
    rewrite ^(.*)$ /index.php$1 last;
}

location / {
    try_files $uri $uri/ /index.php?$args;
}

注意:保存时,Editplus会生成带时间戳的备份文件,此次重启nginx会报警告,需要删除冗余文件才行。