以下代码是我写在我的routes.php
. 当我打开localhost
它时,它加载没有问题。但是当我将我的网址更改为localhost\contact
浏览器时说404 Not Found
Route::get('/', function () {
return view('welcome');
});
Route::get('contact', function(){
return 'Contact';
});
那么这里可能是什么问题。谁能帮我。
PS:安装后我没有改变任何东西。我只在routes.php
.