apache url rewrite及正则表达式笔记
什么是mod_rewrite?
mod_rewrite是apache一个允许服务器端对请求url做修改的模块。入端url将和一系列的rule来比对。这些rule包含一个正则表达式以便检测每个特别的模式。如果在url中检测到该模式,并且适当的预设条件满足,name该模式将被一个预设的字符串或者行为所替换。
这个过程持续进行直到没有任何未处理的规则或者该过程被显式地停止。
这可以用三点来总结:
- 有一系列的顺序处理的规则rule集
- 如果有一条规则被匹配,将同时检查该规则对应的条件是否满足
- 如果一切处理结果都是go,那么将执行一条替换或者其他动作
mod_rewrite的好处
有一些比较明显的好处,但是也有一些并不是很明显:
mod_rewrite非常普遍地被用于转换丑陋的,难以明义的URL,形成所谓"友好或干净的url"。
另一方面,这些转换后的url将会是搜索引擎友好的
正则表达式token:
\s{2,} 2个以上的空格
\| backward referrence
\\ matches a '\'
\b word boundary position,比如whitespace或者字符串的开始或者结束
\B Not a word boundary position
(?=ABC) positive lookahead. Matches a group after your main expression without including it in the result
(?!ABC) Negative lookahead.Specifies a group that can not match after your main expression(ie. if it matches, the result is discarded)
(?<=ABC) Positive lookbehind. Matches a group before your main expression without including it in the result.
(?<!ABC) Negative lookbehind.Specifies a group that can not match before your main expression(ie.if it matches, the result is discarded)
*? :match zero or more of the preceeding token. This is a lazy match, and will match as few characters as possible before satisfying the next token
+? :match one or more of the preceeding token. This is a lazy match, and will match as few characters as possible before satisfying the next token
{5} :matches exactly 5 of the preceeding token;
{2,5} : matches 2 to 5 of the preceding token. Greedy match;
{2,5}? matches 2 to 5 of the preceding token. lazy match;
(ABC) groups multiple tokens together. This allows you to apply quantifiers to the fall group. Creates a capture group roll over a match highlight to see the capture group result
(?:ABC) groups multiple tokens without creating capture group;
$$ escaped $ symbol $`: insert the portion of the string that precedes the match
$&: inserts the matched substring $' : insert the portion of the string that follows the match
[$1]: inserts the result of the first capture group
m multiline
i ignore case
"S" match any character, except for line breaks if dotall is false
"g" search globally
var str='The price of tomato is 5, the price of apple is 10';
str.replace(/(\d+)/g, '$1.00'); // 5.00 10.00
? zero or one
\ escape
\. \\ \+ \* \? \^ \$ \[ \] \( \) \{ \} \/ \' \#
[ABC] Any single character in ABC set
/th(a|i)nk/=/th[ai]nk/
() :捕获 /(.+)@(163|126|188)\.com$/ 检查网易邮箱的格式
(?:)不捕获 /(.+)@(?:163|126|188)\.com$/
javascript中的str.match(regexp)获取被捕获的字符串以便使用
var url='http://blog.163.com/album?id=1#comment';
var reg=/(https?:)\/\/([^\/]+)(\/[^\?]*)?(\?[^#]*)?(#.*)?/;
var arr=rul.match(reg);
var protocal = arr[1]; //http
var host=arr[2];//blog.163.com
var pathname=arr[3]; // /album
var search=arr[4]; // id=1
var hash=arr[5]; //#comment
+ one or more
* zero or more
| or matches the full before or after '|' (https?|ftp)://
^ matches the beginning of the string
$ matches the end of the string
$1 refer to a match
$2 refer to another match
?: within parenthesis to not capture (^.+(?:jpg|png|gif)$)
[^ABC] Any single character not in the set
[a-z] any single character in the a-z range
[^b-e] any single character that is not in range b-e
[0-9]
[\w'-] any world characater, single quote or -
\t \r\n tab
\xFF specifying a character by its hexdecimal index
\xA9 => copyright symbol
如何匹配不包含连续出现的一串字符串?
^(?!.*ab).*$ :不匹配ab连续出现
如何lazy模式尽可能少的匹配到字符串?
alert( "123 456".match(/\d+ \d+?/g) ); // 123 4
注意上面代码中的?就起到了数字匹配lazy最少的模式!
http://javascript.info/regexp-greedy-and-lazy
https://24ways.org/2013/url-rewriting-for-the-fearful/ 号称是最适合人来阅读的关于url-rewrite的文章
apache url rewrite及正则表达式笔记的更多相关文章
- apache url rewrite 的RewriteRule参数详解
apache url rewrite 的RewriteRule参数详解 我们经常会在apache那边对一些url进行一些重写操作,那么就会涉及到很多的重写策略的选择,比如重定向的方式,参数的处理,规则 ...
- apache url rewrite问题
apache RewriteEngine Your browser sent a request that this server could not understand http://www.ra ...
- Apache URL rewrite 配置
下面是Apache的配置过程,可以参考下:1.httpd.conf配置文件中加载了mod_rewrite.so模块,使用虚拟主机 #LoadModule rewrite_module modules/ ...
- nginx和apache下的url rewrite
将服务器上面的数据同步到本地之后,发现打开首页显示不正常,本地服务器是apache,经过打开url rewrite之后本地首页正常显示. 原因是phpwind本身支持了url rewrite的功能,但 ...
- apache开启url rewrite模块
在把服务器数据转移到本地服务器之后,本地打开首页出现排版紊乱等问题,经过大神指点说是url rewrite的问题. 本篇文章主要写怎样开启apache的url rewrite功能. 打开Apache2 ...
- IIS 7.5 使用URL Rewrite模块简单设置网页跳转
原文 IIS 7.5 使用URL Rewrite模块简单设置网页跳转 我们都知道Apache可以在配置文件里方便的设置针对网页或网站的rewrite,但是最近接手了一组IIS服务器,发现这货简单的没有 ...
- Apache之Rewrite和RewriteRule规则梳理以及http强转https的配置总结
一. 简单实例介绍一般来说,apache配置好http和https后,如果想要做http强转到https,需要设置url重定向规则,大致需要下面几个步骤即可完成配置: 1)在httpd.conf文件里 ...
- Linux--nginx域名绑定-url rewrite
进入/usr/local/nginx/conf 编辑 nginx.conf 绑定域名: 添加一个 server元素,更改后的配置内容可能如下: server { listen 80; se ...
- (Nginx) URL REWRITE
URL重写的基础介绍 把URI地址用作参数传递:URL REWRITE 最简单的是基于各种WEB服务器中的URL重写转向(Rewrite)模块的URL转换: 这样几乎可以不修改程序的实现将 news. ...
随机推荐
- centos7防暴力破解五种方法
什么是暴力破解,简单来说就是对一个服务器进行无数次尝试登陆,并用不同的密码进行登陆直到可以登陆成功.暴力破解的基本步骤可以分为以下几步: 1. 找到对应的linux服务器 Ip地址 2.扫描端口 ...
- springboot-23-aspectj日志记录及threadlocal内存泄漏
对于请求参数的处理和响应, 如果在代码中体现日志会显得很繁琐, 普遍的解决方案是使用spring的切面方案去解决. 这儿使用的是springboot的切面: http://www.cnblogs.co ...
- springboot-7-配置druid数据源监视
关于druid数据源的配置, 上个博客已经说过了,再说一遍吧 , 引入依赖 , 配置properties参数 , 编写servlet和filter提供页面监视 , 测试 1, 引入maven依赖 &l ...
- sparkthriftserver启动及调优
Sparkthriftserver启用及优化 1. 概述 sparkthriftserver用于提供远程odbc调用,在远端执行hive sql查询.默认监听10000端口,Hiveserver2默 ...
- SSH和SSL比较
一.SSH介绍 什么是SSH? 传统的网络服务程序,如:ftp.pop和telnet在本质上都是不安全的,因为它们在网络上用明文传送口令和数据, 别有用心的人非常容易就可以截 获这些口令和数据.而且, ...
- vue2.x中请求之前数据显示以及vuex缓存的问题
在项目中遇到两个问题,简单的做个笔记来记录自己解决的问题,可能不是很好的处理办法,欢迎提出,自己还在不断优化中... 第一个是vue在加载页面的时候,会先加载静态资源,这个时候数据还没有请求回来,用户 ...
- js 3行代码,最简易实现div效果悬浮
简易实现浮动效果的首要因素是:获取滚动条距离浏览器顶部的距离,下面直接贴代码: <!DOCTYPE html> <html> <head> <meta cha ...
- SqlDataReader的关闭问题,报错:“阅读器关闭时尝试调用 Read 无效”
SqlDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);//关闭SqlDataReader 会自动关闭Sqlconn ...
- [整理]EF6.X更新了什么(版本历史中文版)
下定决心以后用EF6.x版本了.想看看有什么更新特性,结果去人家github老巢一看,EF7 for vnext,顿时蛋疼了起来.想想国内这种技术氛围,有多少还在用ASP的,有多少还在用ADO.NET ...
- VisualVM监控远程阿里云主机
一.前言 使用VisualVM监控远程主机,主要是要在远程主机上部署JMX服务和jstat服务,jstat服务的部署花了我半天的时间,而且,网上的资基本都是缺胳膊少腿的,没有一篇是一个整体(行得通的) ...