0

我知道这个问题非常基本,但如果有人可以在这里帮助我,我将不胜感激。

我正在尝试使用 htaccess将所有请求重定向到http://example.com/index.php?/api/functionhttp://anotherexample.com/api/function

我一直在做一些研究,我发现所有的都是使用 POST 方法重定向,但没有真正用 GET 解释。

我努力了:

RewriteBase /
RewriteRule ^index.php?/api/function http://anotherexample.com/api/function [NC,L,R=301]

这让我没有成功。提前致谢

4

1 回答 1

0

我让它与上面的代码一起工作:

RewriteCond %{QUERY_STRING} ^/api/(.*)$
RewriteRule ^index.php http://anotherexample.com/api/%1? [QSA,L]

感谢小费CBroe

于 2013-07-30T09:24:47.950 回答