我使用botman
框架开发了一个聊天机器人,它在 localhost 上运行良好。将其上传到 cpanel 聊天小部件后会出现404 page not found
. 谁能帮我解决这个问题我无法找到解决方案。在这里你可以看到错误https://abhishekjaiswal.in/
routes/botman.php
<?php
use App\Http\Controllers\BotManController;
use App\Conversations;
$botman = resolve('botman');
$botman->hears('hi|hello|good morning',
BotManController::class.'@startConversation');
$botman->hears('Who are you', function($bot) {
$bot->reply('I am a chatbot');
});
$botman->hears('ok|okay|hmm|great', BotManController::class.'@KnowMore');
$botman->fallback(function($bot) {
$bot->reply('Sorry, I did not understand what you saying. Dont feel embarass just
start with hi.');
});