typecho 使用要点
可用常量
以下常量定义在config.inc.php即可
define('__TYPECHO_DEBUG__', true);
伪静态
Apache配置
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] </IfModule>
Nginx配置
location / { index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php/$1 last; break; } }
语法高亮
使用prism.js和prism.css
原文地址
http://jingyan.baidu.com/article/1e5468f97b3a79484961b7d7.html
最后更新于 2021-02-19 07:23:43 并被添加「Typecho 语法高亮」标签,已有 737 位童鞋阅读过。
此处评论已关闭