---
url: /host/ccwj3gxq/index.md
description: Handsome 博客主题 Nginx 伪静态配置，解决 Typecho 的 URL 重写问题。
---
handsome 主题伪静态设置

```nginx
    if (!-e $request_filename) {
        rewrite ^(.*)$ /index.php$1 last;
    }
```
