可用常量

以下常量定义在config.inc.php即可

1
define('__TYPECHO_DEBUG__', true);

伪静态

  • Apache配置
1
2
3
4
5
6
7
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
  • Nginx配置
1
2
3
4
5
6
7
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