I want only my payment checkout pages in https. I have a website in http://, I´m implement a payment checkout with Stripe credit card, but Stripe only works with https...
I want that all my website have http, except the /payment-date page and the payment-data-post page, to send the data to Stripe with secure protocol.
How I can have only those two pages on https?
The routes are:
Route::get('/payment-data',['as'=> 'payment_data','uses' => 'WebController@getPaymentData']);
Route::post('/post-payment-data', ['as' => 'post_payment_data', 'uses' => 'WebController@postPaymentData']);
I want only this routes in https
The framework is Laravel 5.3
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire