1. 简单的正则匹配 `()`分配组
>RewriteRule ^(.*)$ http://example.com/$1
2. 重写条件condition
>RewriteCond %{REQUEST_FILENAME} !-f
!-f 不是文件(files)或不存在
!-d 不是目录(directories)或不存在
3. options 官网把这个叫做[flag](https://httpd.apache.org/docs/current/rewrite/flags.html)
[L] 表示last 最后匹配项
4. 匹配目录(包含/)
[stackoverflow](http://stackoverflow.com/questions/8115398/mod-rewrite-htaccess-matches-files-only-need-directory-match-too)
5. Refer可以在这里找[http://www.techug.com/htaccess-snippets](http://www.techug.com/htaccess-snippets)