因此,我在 Heroku 上部署了 Slim 應(yīng)用程序。只有索引路由 (/) 有效,對(duì)于其他路由,我收到 404 未找到錯(cuò)誤。這是我的routes.php 文件 // index $app->group('', function(RouteCollectorProxy $group) { $group->get('/', EntryPointController::class . ':index' ); $group->get('/test', EntryPointController::class . ':test' ); }); // api $app->group('/api/v1', function(RouteCollectorProxy $group) { $group->get('/products', ProductsController::class . ':all' ); });概要文件內(nèi)容:web: vendor/bin/heroku-php-apache2 public/對(duì)于除索引路由 (/) 之外的所有路由,我收到 404 錯(cuò)誤,盡管在 localhost 上一切正常。那么請(qǐng)問(wèn),這個(gè)問(wèn)題該如何解決呢?
為什么我在訪問(wèn) Heroku 上部署的 Slim 應(yīng)用程序時(shí)收到 404 Not Found 錯(cuò)誤?
達(dá)令說(shuō)
2023-11-03 14:59:45