阅读:2583回复:0
伪静态 .htaccess使用方法与Apache的URL重写规则的标志详细说明
首先:
必须要空间支持 Rewrite 以及对站点目录中有 .htaccess 的文件解析,才有效. 如何让空间支持Rewrite 和 .htaccess 的文件解析呢 往下看 第一步:要找到apache安装目录下的httpd.cof文件,在里面找到 Options FollowSymLinks AllowOverride none 把none改all, 第二步:找到以下内容: #LoadModule rewrite_module modules/mod_rewrite.so 改为 LoadModule rewrite_module modules/mod_rewrite.so 第三步:保存重启apache。 ok。 其次是.htaccess的书写规则: .htaccess加入以下内容 RewriteEngine On RewriteBase / RewriteRule ^(.*)list-id([0-9]+).html$ $1/company/search.php?sectorid2=$2 RewriteRule ^(.*)cominfo-([a-z0-9]+).html$ $1/member/index.php?uid=$2&type=cominfo RewriteRule ^(.*)list-([0-9]+)-([0-9]+).html$ $1/plus/list.php?typeid=$2&PageNo=$3 RewriteCond %{HTTP_HOST} ^[a-z0-9-]+.smsyun.com$ RewriteCond %{HTTP_HOST} !^(www|bbs).smsyun.com$ RewriteRule ^/?$ /%{HTTP_HOST} RewriteRule ^/([a-z0-9-]+).smsyun.com/?$ /member/index.php?uid=$1 [L] Apache的URL重写规则的标志详细说明: 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=zed 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) 设置环境变量 Rewrite规则表达式的说明: . 匹配任何单字符wFlv i =n/ [chars] 匹配字符串:chars[o c~iDx%W [^chars] 不匹配字符串:charsLc |
|