location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}
}
开启伪静态
Typecho后台配置——设置——永久链接——启用 地址重写功能
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}
}
Typecho后台配置——设置——永久链接——启用 地址重写功能