.htaccess实现php伪静态

关于伪静态的做法一直都很重要,伪静态不仅可以“欺骗”蜘蛛爬虫,还可以让访问者以为就是静态网页。伪静态其实也就是网址重定向,通过修改访问网址实现和动态路由访问一样效果,对SEO来说比较友好。


Apache mod_rewrite规则重写的标志一览

    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) 传递给下一个处理
    14) S=num(skip next rule(s)) 跳过num条规则
    15) E=VAR:VAL(set environment variable) 设置环境变量

当然首先的在Apache里面开启伪静态功能,打开配置文件httpd.conf

1.启用rewrite
    # LoadModule rewrite_module modules/mod_rewrite.so 

去除前面的 #
     2.在网站根目录新建
.htaccess文件,案例内容如下
    RewriteEngine on
    <IfModule mod_rewrite.c>
    RewriteBase /
    RewriteRule ^(\w+)/$ /index.php?mod=$1&%{QUERY_STRING} [L]
    RewriteRule ^(\w+)/(\w+)/$ /index.php?mod=$1&v_mod=$2&%{QUERY_STRING} [L]
    RewriteRule ^(\w+)/(\w+)/(\w+).html$ /index.php?mod=$1&v_mod=$2&_index=$3&%{QUERY_STRING} [L]
    RewriteRule ^(\w+)/(\w+)/(\w+)/(\w+).html$ /index.php?mod=$1&v_mod=$2&_index=$3&id=$4&%{QUERY_STRING} [L]
    </IfModule>
     3.访问网站的index.php?mod=index&v_mod=news&_index=_view&id=109 于访问/index/news/_view/109.html 的效果,这样就实现了伪静态。

上面的案例是将相应的参数分别用“/”替换,用“html”后缀。
关于htaccess文件的写法有几种,当然最多的是用正则表达式匹配了。
      

评论/留言