我必须用PHP建立一个网站,我选择使用Slim和Twig。但我的上级不希望我使用虚拟主机。因此,当我使用MAMP测试网站时,我遇到了麻烦,因为该网站位于子目录中,例如http://localhost:8888/subdir
。
当我尝试访问资产时,我无法使用绝对路径,因为它会强制我写/subpath/path/to/asset
。但是当我们部署应用程序时,将没有子路径。如何将网站作为虚拟主机的根源?
您可以在下面看到我的一些代码:
的index.php
<?php
require 'vendor/autoload.php';
include 'database.php';
use app\controller\ConfigController;
$app = new \Slim\Slim();
$app->get('/', function () {
echo "accueil";
})->name("root");
$app->group('/Admin', function () use ($app) {
$app->get("/", function (){
$ctrl = new ConfigController();
$ctrl->index();
})->name("indexAdmin");
});
.htaccess (在localhost:8888 / subdir中)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
ConfigController (称为函数)
public function index() {
$loader = new \Twig_Loader_Filesystem("app/view/Admin");
$twig = new \Twig_Environment($loader);
$template = $twig->loadTemplate('Index.twig');
echo $template->render(array(
'css' => "admin.css"
));
}
由Twig环境调用的模板
<!doctype html>
<html lang="fr">
<head>
<link rel="stylesheet" type="text/css" href="/app/assets/stylesheets/{{ css }}">
</head>
<body>
[...]
当我在Google和Stack Overflow上搜索时,每个人都说要创建一个虚拟主机,但我不能。会有另一种解决方案吗?
答案 0 :(得分:0)
如果您使用slim/views package在您正在编写的应用程序中集成Twig,则可以将该包中的TwigExtension
添加到您的Twig实例中,并使用siteUrl
函数你的资产。这样:
<link rel="stylesheet" href="{{ siteUrl('path/to/asset/style.css') }}">
如果您不使用该软件包,则可以创建自己的函数来获取应用程序URL。像这样:
function siteUrl($url) {
$req = Slim::getInstance()->request();
$uri = $req->getUrl() . $req->getRootUri();
return $uri . '/' . ltrim($url, '/');
}