0

付款正在工作,当它重定向回来时,它会显示为,

http://www.test.com//bedankt/?transactionid=979

由于双斜杠,它会出现 404 错误,当我删除一个斜杠时,页面加载正常。

在代码中,我使用了标准的声明方式,

include(__DIR__.'/../Resources/config/multisafepay.php');
    $msp = new MultiSafepay();

    $msp->merchant['account_id']       = MSP_ACCOUNT_ID;
    $msp->merchant['site_id']          = MSP_SITE_ID;
    $msp->merchant['site_code']        = MSP_SITE_CODE;
    $msp->merchant['redirect_url']     = BASE_URL.'bedankt/';
4

1 回答 1

0

你确定你这样做:

$msp->merchant['redirect_url']     = rtrim(BASE_URL,'/').'bedankt/';

如果是,如果 url 不是由另一个代码生成的,你应该在其他地方搜索,例如在测试文件中。

于 2013-06-19T13:28:46.660 回答