Merge branch 'master' into develop

This commit is contained in:
Pierre Rudloff 2022-02-20 14:07:21 +01:00
commit 64ac180a53
1 changed files with 10 additions and 1 deletions

View File

@ -45,12 +45,21 @@ class ViewFactory
{
$basePath = $uri->getBasePath();
if (str_ends_with($basePath, 'index.php')) {
$basePath = dirname($basePath);
if ($basePath == '/') {
/*
* Calling withBasePath('/') does nothing,
* we have to use an empty string instead.
*/
$basePath = '';
}
/*
* When the base path ends with index.php,
* routing works correctly, but it breaks the URL of static assets using {base_url}.
* So we alter the base path but only in the URI used by SmartyPlugins.
*/
$uri = $uri->withBasePath(dirname($basePath));
$uri = $uri->withBasePath($basePath);
}
return $uri;