目前我尝试在当前项目中更改一些链接。
这是两个例子。
xyz.com/mn-op (example for user site) [old one xyz.com/user/mn-op]
xyz.com/backend (site for backend)
如果我想打开后端的网站,那么我会收到以下错误。
Sorry, the page you are looking for could not be found.
No query results for model [App\Models\User].
以下是我项目中的文件夹结构。
laravel
-app
--Http
---Controllers
----Frontend
----Backend
这是我的routes.php。
的一部分Route::group(['middleware' => 'auth'], function() {
Route::group(['namespace' => 'frontend'], function () {
Route::get('{username?}', ['uses' => 'UserController@getProfile', 'as' => 'user.profile']);
});
Route::group(['namespace' => 'backend'], function() {
Route::get('backend', ['uses' => 'DashboardController@getIndex', 'as' => 'backend']);
});
});
如何修复它以便我可以再打开我的后端?