apache伪静态规则解析php
最近有个客户有个要求,昨天折腾了一会,没解决,今天没啥就多学习学习html
仍是根据例子来学习比较快nginx
1 简单的重定向规则apache
RewriteEngine On //启动规则 RewriteBase / //根目录启动伪静态 RewriteRule ^index/$ index.php //访问index/ 那么就是访问index.php RewriteRule ^register/$ /s_youka/register.html //访问register 就是访问/s_youka/register.html
2 稍微复杂一点的api
RewriteEngine on RewriteRule ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1list.php?page=$1&id=$2 //后面的 $1 $2 对应前面的()内的代码 其余的是正则规则 //^表明开头$表明结束 [0-9]+ 是多个0到9之间的数字 \是转义后面的.
3 更精准一些的服务器
/type.php?typeid=* –> /type*.html /type.php?typeid=*&page=* –> /type*page*.html RewriteRule ^/type([0-9]+).html$ /type.php?typeid=$1 [PT] RewriteRule ^/type([0-9]+)page([0-9]+).html$ /type.php?typeid=$1&page=$2 [PT] //重点介绍下PT 交给下一条处理
1) R[=code](force redirect) 强制外部重定向
强制在替代字符串加上http://thishost[:thisport]/前缀重定向到外部的URL.若是code不指定,将用缺省的302 HTTP状态码。
2) F(force URL to be forbidden)禁用URL,返回403HTTP状态码。
3) G(force URL to be gone) 强制URL为GONE,返回410HTTP状态码。
4) P(force proxy) 强制使用代理转发。
5) L(last rule) 代表当前规则是最后一条规则,中止分析之后规则的重写。
6) N(next round) 从新从第一条规则开始运行重写过程。
7) C(chained with next rule) 与下一条规则关联
若是规则匹配则正常处理,该标志无效,若是不匹配,那么下面全部关联的规则都跳过。
8) T=MIME-type(force MIME type) 强制MIME类型
9) NS (used only if no internal sub-request) 只用于不是内部子请求
10) NC(no case) 不区分大小写
11) QSA(query string append) 追加请求字符串
12) NE(no URI escaping of output) 不在输出转义特殊字符
例如:RewriteRule /foo/(.*) /bar?arg=P1%3d$1 [R,NE] 将能正确的将/foo/zoo转换成/bar?arg=P1=zoo
13) PT(pass through to next handler) 传递给下一个处理
例如:app
14) S=num(skip next rule(s)) 跳过num条规则
15) E=VAR:VAL(set environment variable) 设置环境变量学习
4 discuz3x的规则this
RewriteEngine On //开启 RewriteBase / //当前根目录 RewriteCond %{QUERY_STRING} ^(.*)$ //定义了规则生效的条件-查询字符串 RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1 //topic-开头 .htm后缀 实际上市访问了 后面的地址
5 nginx相似spa
Nginx下设置伪静态方法与Apache差很少,直接在nginx.conf (或者在对应的*.conf) 中找到需设置伪静态规则的服务器对应字段,在server{ location/{ } }中添加如下代码:
server { listen 80 default_server; server_name _; location / { root /usr/share/nginx/html; index index.html index.htm; rewrite ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1list.php?page=$2&id=$3; } }
添加后重启Nginx服务便可生效!
PS:若是你的伪静态不起做用,请检测文件的名字是否是 .htaccess 切记