gpt4 book ai didi

php - Slim Framework 404 css 问题

转载 作者:搜寻专家 更新时间:2023-10-31 20:37:18 25 4
gpt4 key购买 nike

你好,我正在为一个简单的元素使用 slim 框架,目前遇到了一个问题。我抛出 404 错误的代码是:

$app->notFound(function () use ($app) {
$app->render('404.html');
});

代码将转到 404 页面以获得 2 个未知的 url 参数,如 website.com/1st/2nd/ 但当有 3 个或更多如 website.com/1st/2nd/3rd/,代码仍然有效,但不再执行 Assets (css/js)。

我的路由配置是这样的:

require_once 'vendor/autoload.php';

$app = new \Slim\Slim([
'debug' => true,
'templates.path' => 'app/views'
]);

$app->view = new \Slim\Views\Twig();
$app->view->setTemplatesDirectory("app/views");

$view = $app->view();
$view->parserOptions = ['debug' => true];
$view->parserExtensions = [new \Slim\Views\TwigExtension()];

我在我的观点中使用了 Twig 。我关注了this教程。我的文件夹结构如下所示:

enter image description here

在我的基本模板中,这就是我包含 Assets (css/js) 的方式。

enter image description here

它只显示 404 页面文本。这里有什么问题吗?

最佳答案

也许你应该使用base href因为 css 和脚本源通常是相对的。

关于php - Slim Framework 404 css 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31982763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com