我在我的网站上通过 .htaccess 使用 URL 重写。然后我通过 PayPal 的 ExpressPay 提交并返回如下内容:
http://mydomian.com/cart/success?token=EC-123456789&PayerID=123456789
/cart 和 /success 很棒,但是有没有一种简单的方法来获取“token”和“PayerID”变量?
这是我正在使用的 .htaccess :
RewriteRule ^([^/\.]+)/?$ index.php?load=$1
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ index.php?load=$1&query=$2
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?load=$1&query=$2&query2=$3 [L]