htaccess到nginx转换反向代理保持URL

时间:2013-08-28 05:04:49

标签: .htaccess mod-rewrite nginx

我正在使用post affiliate pro,他们有一个脚本将www.example.com上的网页转换为联盟会员的横幅,htaccess使用php脚本将联盟会员信息加载到网站/横幅。

我正在尝试将htaccess转换为nginx conf文件。我在winginx和anilcetin尝试了转换器 他们工作,但它将网址从www.example更改为pap.example。

在具有.htaccess的Apache服务器上,url维护为www.example。这就是我想在nginx服务器上复制的内容。

这是htaccess文件。

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/(.*) http://pap.example.com/scripts/page.php?a_aid=$1&a_bid=7c4ec277&a_file=$2 [L,P,QSA]


RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+) http://pap.example.com/scripts/page.php?a_aid=$1&a_bid=7c4ec277&a_redir=Y [L,P,QSA]

感谢您的帮助

肖恩

0 个答案:

没有答案