SAE下的伪静态规则

新浪SAE下面实现伪静态主要是通过修改config.yaml文件来实现。

 Wordpress

handle:
  - rewrite: if(!is_dir() && !is_file()) goto "index.php?%{QUERY_STRING}"

 Typecho

handle:
  - rewrite:if(!is_file() && !is_dir()  && path ~ "^([0-9]{1,})$") goto "/index.php?m=ta&id=$1"
  - rewrite:if(!is_file() && !is_dir() && path ~ "^(.*)$") goto "/index.php/$1?%{QUERY_STRING}"