我有一個核心PHP的網站,並從那裏我試圖將數據發佈到我的laravel網站,但得到一個302從其他網站發佈到我的Laravel的網站,並獲得302錯誤
我的PHP形式
<form name="frm_payInternational" action="https://abcd.com/international" method="post">
<input type="hidden" value="">
<div style="margin-bottom:15px;">
<input name="paymentInterEmail" id="paymentInterEmail" placeholder="Enter Email Id" style="width:400px;height:30px;border-radius:5px;" >
</div>
<div style="margin-bottom:15px;">
<input name="paymentInterAmt" id="paymentInterAmt" placeholder="Enter Amount" style="width:400px;height:30px;border-radius:5px;" >
</div>
<div style="margin-bottom:15px;">
<button type="submit" name="btn_makePaymentInter" id="btn_makePaymentInter" class="btn">Make Payment</button>
</div>
</form>
我routes.php文件代碼
// Payment Link
Route::post('/international', '[email protected]');
302不是一個錯誤,而是一個重定向。它試圖將你重定向到哪裏?並且:很多網站會在發佈後進行重定向,以避免瀏覽器詢問用戶是否希望在歷史導航中重新發布其值。 – Wrikken
它將我重新定向到我發佈此表單的同一頁面..我猜測它需要一個csrf_token但不知道如何傳遞它 –