Typecho 使用详解 发表于 2016-03-03 | 更新于 2018-12-26 | 分类于 CMS , Typecho | 评论数: | 阅读次数: Typecho 是一款类似于 WordPress 的基于 PHP 的站点搭建工具。 nginx 配置12345678910111213141516server { listen 80; server_name yourdomain.com; root /home/yourdomain/www/; index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; } location ~ .*\.php(\/.*)*$ { fastcgi_pass 127.0.0.1:9000; include fastcgi.conf; }} 相关链接 http://docs.typecho.org/faq