好的,所以我正在将 PayPal 定期订阅从我的 vBulletin 转移到 aMember。PayPal 不允许您更改现有定期订阅的 IPN,因此当我在会员中需要它时,它们仍会向 vBulletin 发送通知。
经过大量的试验和错误+在这里浏览,我找到了另一个用户的解决方案:
# ensure only rewrite old paypal when query has exactly right parameter
RewriteCond %{QUERY_STRING} (?:^|&)method=paypal(?:$|&)
# should only happen on first request and allow the pretty url to be routed normally on the next pass through the rules
RewriteRule ^ aMember/payment/ipn [NS,DPI,QSD]
现在我的问题是:这是否仍然允许通知点击 vBulletin 软件,或者我可以做些什么来允许它?因为如果可以的话,这意味着我将能够同时运行两者,并让我在转移人员方面有更大的灵活性......而在目前的情况下,我需要一次完成所有工作。