2016年8月30日
摘要: rewrite 的语法 语法: rewrite regex replacement flag 默认: none 作用域: server, location, if This directive changes URI in accordance with the regular expression 阅读全文
posted @ 2016-08-30 03:51 jayruan 阅读(251) 评论(0) 推荐(0)
摘要: nginx 重写 rewrite 基础及实例 rewrite ^/([a-zA-Z0-9]+)$ /index.php?f=$1; nginx rewrite 正则表达式匹配 大小写匹配 ~ 为区分大小写匹配 ~* 为不区分大小写匹配 !~和!~*分别为区分大小写不匹配及不区分大小写不匹配 文件及目 阅读全文
posted @ 2016-08-30 03:24 jayruan 阅读(135) 评论(0) 推荐(0)