所以我有一個路線:只有一個路由重定向到結尾的斜線
Route::get('dashboard', 'Dashboard\[email protected]');
當我嘗試打開該路由添加一個斜線,我被重定向到一個404錯誤。這:/儀表板成爲這個/儀表板/
最奇怪的是,只有儀表板路線發生,所有其他路線工作得很好。
Route::get('dashboard/users', 'Dashboard\[email protected]');
Route::get('dashboard/users/create', 'Dashboard\[email protected]');
Route::post('dashboard/users/create', 'Dashboard\[email protected]');
Route::get('dashboard/users/edit/{id}', 'Dashboard\[email protected]');
Route::post('dashboard/users/edit/{id}', 'Dashboard\[email protected]');
Route::get('dashboard/users/delete/{id}', 'Dashboard\[email protected]');
所有這些和所有其他途徑做工精細
任何建議,歡迎
是的,我知道,我喜歡這樣的路線。但那不是我的問題。如帖子中所述。只有一條路線在末尾添加了斜線所有其他路線均可正常工作 –
嘗試在隱身模式(私人)模式下打開頁面,並檢查是否得到相同的結果。 –