我有一个网址
api/something/json?callback=abc 我想将它重定向到
dothis.php?strEndPoint=something&callback=abc&format=json
我尝试的基本 htaccess 是:
RewriteRule ^api/(. )/(json)?callback=(. ) client.php?strEndPoint=$1&callback=$3&format=($2)
似乎不起作用:p
我有一个网址
api/something/json?callback=abc 我想将它重定向到
dothis.php?strEndPoint=something&callback=abc&format=json
我尝试的基本 htaccess 是:
RewriteRule ^api/(. )/(json)?callback=(. ) client.php?strEndPoint=$1&callback=$3&format=($2)
似乎不起作用:p
经过测试
使用 。*
RewriteEngine On
RewriteCond %{QUERY_STRING} callback\=(.*)
RewriteRule /api/(.*)/(json) /client.php?strEndPoint=$1&callback=%1&format=$2 [R=301]
你可以删除 r=301 只是为了测试
$ curl localhost/api/1111/json?callback=2222 -I
HTTP/1.1 301 Moved Permanently
Date: Fri, 01 Nov 2013 03:16:25 GMT
Server: Apache/2.2.24 (Unix) DAV/2 mod_ssl/2.2.24 OpenSSL/0.9.8y
Location: http://localhost/client.php?strEndPoint=1111&callback=2222&format=json