RewriteCond apche获取url参数

开发系统中用到:

RewriteEngine on
RewriteCond %{QUERY_STRING} ser=([a-zA-Z0-9_]+)
RewriteRule ^/engine(.*)$ http://e.smartearth.cn:9000/%1?%{QUERY_STRING} [P]
RewriteCond %{QUERY_STRING} ser=([a-zA-Z0-9_]+)
RewriteRule ^/([a-zA-Z0-9_]+)/engine(.*)$ http://e.smartearth.cn:9000/%1?%{QUERY_STRING} [P]

或者

RewriteCond %{QUERY_STRING} ^.*&?ser=([a-zA-Z0-9_]+)&?.*$
RewriteRule ^/engine$ http://e.smartearth.cn/%1

RewriteCond %{QUERY_STRING} ^.*&?ser=(\w+)&?.*$
RewriteRule ^/engine$ http://e.smartearth.cn/%1


匹配了

http://engine.smartearth.cn/smartearth_engine_Ser/engine?st=LocalSearch&city=%C8%AB%B9%FA&words=%B3%D4%B7%B9&ser=SE_LS&uid=XXXX
http://engine.smartearth.cn/engine?st=LocalSearch&city=%C8%AB%B9%FA&words=%B3%D4%B7%B9&ser=SE_LS&uid=XXXX

向:
http://e.smartearth.cn:9000/SE_LS?st=LocalSearch&city=%C8%AB%B9%FA&words=%B3%D4%B7%B9&ser=SE_LS&uid=XXXX 的转换


下面是我摘抄的一些 对  RewriteCond 的理解:




RewriteCond 就像我们程序中的 if 语句一样,表示如果符合某个或某几个条件则执行RewriteCond下面紧邻的RewriteRule语句,这就是RewriteCond最原始、基础的功能,为了方便理解,下面来看看几个例子。
   RewriteEngine on
   RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla\\/5\\.0.*
   RewriteRule  index.php            index.m.php
 
   RewriteCond  %{HTTP_USER_AGENT}  ^Lynx.*
   RewriteRule  index.php            index.L.php 

   RewriteRule  index.php            index.b.php
上面语句的作用是当你是用FF浏览器访问index.php这个文件的时候,会自动让你访问到index.m.php这个文件,当你是用一些移动终端访问的时候,会让你对index.php这个文件的访问实际访问的是index.L.php去,如果你是用其它的浏览器访问的时候,会让你跳到 index.b.php。在说形象一点,上面的语句就等同于程序里面的下面语句(依PHP语句为例):
        if($_SERVER[\'HTTP_USER_AGENT\'] == \'Mozilla/5.0\')
        {
              //跳转到对index.m.php的访问
        }
        else if($_SERVER[\'HTTP_USER_AGENT\'] == \'Lynx\')
        {
              //跳转到对index.L.php的访问
        }
        else
              //跳转到对index.b.php的访问
 
 在看例2:
        RewriteCond %{HTTP_REFERER} (www.test.cn)
        RewriteRule (.*)$ test.php
上面语句的作用是如果你访问的上一个页面的主机地址是www.test.cn,则无论你当前访问的是哪个页面,都会跳转到对test.php的访问。

在看例三:
       RewriteCond %{REMOTE_HOST} ^host1.* [OR]
       RewriteCond %{REMOTE_HOST} ^host2.* [OR]
       RewriteCond %{REMOTE_HOST} ^host3.*
       RewriteRule (.*)$ test.php
上面语句的作用是如果你的地址是host1或host2或host3的时候,则就跳到对test.php。从这里可以看出,RewriteCond语句之间默认的是AND,如果想要OR,则要明确的写出来。


你可能感兴趣的:(RewriteCond apche获取url参数)