Typecho如何开启伪静态

### 宝塔nginx伪静态
location / {
    if (!-e $request_filename) {
      rewrite ^(.*)$ /index.php$1 last;
    }   
  }  

开启伪静态

Typecho后台配置——设置——永久链接——启用 地址重写功能