0
我有例如以下途徑:Laravel 5路組合
Route::get('/adres/{postcode}/{housenumber}/{letter?}/{additional?}/what', '[email protected]');
/adres/1234aa/1/what
/adres/1234aa/2/A/what
/adres/1234aa/3/B/additional/what
Route::get('/adres/{postcode}/{housenumber}/{letter?}/{additional?}', '[email protected]');
/adres/1234aa/3/B/additional/
所以,如果我進入
www.domain.com/adres/1111aa/1/what
它沒有得到第二條路線。
我該如何做到這一點?
你得開始/ ADRES/ 你有兩條路試圖訪問/ 1111aa/1 /哪些不是以/ adres /開頭的,所以這是正常的,但你無法到達任何路線 – tete0148