我使用最简单的例子用Slim 3和Twig创建了一个项目。
文件夹结构如下:
- public
- index.php
- style.css
index.php
中的应用代码如下:
<?php
require 'vendor/autoload.php';
$app = new \Slim\App();
$container = $app->getContainer();
// Twig
$container['view'] = function ($container) {
$view = new \Slim\Views\Twig('src/views', [
'cache' => false // TODO
]);
// Instantiate and add Slim specific extension
$basePath = rtrim(str_ireplace('index.php', '', $container['request']->getUri()->getBasePath()), '/');
$view->addExtension(new Slim\Views\TwigExtension($container['router'], $basePath));
return $view;
};
$app->get('/', function ($request, $response, $args) {
return $this->view->render($response, 'index/index.html.twig');
})->setName('index');
$app->run();
现在,问题是尝试加载/style.css
会显示主页面(index/index.html.twig
)。为什么我无法访问style.css
文件?
服务器我使用PHP内置开发服务器,使用命令:
php -S localhost:8000 -t public public/index.php
如何加载资产?这有什么问题?
答案 0 :(得分:5)
原因是PHP内置开发服务器“dumb&#39;。
我必须将此检查作为index.php
文件中的第一件事。
// To help the built-in PHP dev server, check if the request was actually for
// something which should probably be served as a static file
if (PHP_SAPI == 'cli-server') {
$url = parse_url($_SERVER['REQUEST_URI']);
$file = __DIR__ . $url['path'];
if (is_file($file)) return false;
}
来源:https://github.com/slimphp/Slim-Skeleton/blob/master/public/index.php
答案 1 :(得分:0)
我检查过的另一个选项是在公用文件夹中运行服务器。您将不需要该脚本:
cd public
php -S localhost:8000