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

相关文章

此处评论已关闭