我正在为我的项目使用laravel 5.4。我使用了TinyMCE4(UniSharp / laravel-filemanager),但是我无法在生产网站上传图像,如www.abc.com/manager/new_post这里管理器不是根目录。单击图像图标时,验证失败。
但在我的本地开发中它运作良好。
Auth Config :
'defaults' => [
'guard' => 'web',
'passwords' => 'users',
],
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Manager::class,
],
],