• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

apache伪静态通用规则

php 搞代码 4年前 (2022-01-04) 76次浏览 已收录 0个评论

apache伪静态规则

1、简单的重定向规则

RewriteEngine On  //启动规则RewriteBase /      //根目录启动伪静态RewriteRule ^index/$ index.php  //访问index/ 那么就是访问index.phpRewriteRule ^register/$ /s_youka/register.html  //访问register  就是访问/s_youka/register.html

2、稍微复杂的规则

RewriteEngine onRewriteRule ^(.*)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?ty<strong style="color:transparent">来源gaodai#ma#com搞@@代~&码网</strong>peid=*&page=* –> /type*page*.htmlRewriteRule ^/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) 传递给下一个处理

例如:

RewriteRule ^/abc(.*) /def$1 [PT] # 将会交给/def规则处理Alias /def /ghi

14) S=num(skip next rule(s)) 跳过num条规则

15) E=VAR:VAL(set environment variable) 设置环境变量

4、discuz3x的规则

RewriteEngine On  //开启RewriteBase / //当前根目录RewriteCond %{QUERY_STRING} ^(.*)$  //定义了规则生效的条件-查询字符串RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1//topic-开头 .htm后缀  实际上市访问了 后面的地址

5、nginx类似

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服务即可生效!

推荐教程:PHP视频教程

以上就是apache伪静态通用规则的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:apache伪静态通用规则

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址