gpt4 book ai didi

php - Symfony liipimaginebundle : set request context scheme to https

转载 作者:搜寻专家 更新时间:2023-10-31 21:50:50 24 4
gpt4 key购买 nike

我做了以下事情:

img_path = 'abc.jpg'
<img src="{{ img_path | imagine_filter(filter) }}">

所以我想使用 https 的 url。目前我正在使用 http 获取 url。

我在参数中设置了 router.request_context.scheme: https。但是没有用。

所以实际上我想设置vendor/symfony/symfony/src/Symfony/Component/Routing/RequestContext.phpscheme 属性到 https

最佳答案

我更改了 liip/imagine-bundle/Imagine/Cache/Resolver/WebPathResolver.php 因为我有同样的问题。

在第 151 行,我输入了 $this->requestContext->setScheme('https'); :

    $baseUrl = rtrim($baseUrl, '/\\');
$this->requestContext->setScheme('https');
return sprintf('%s://%s%s%s',
$this->requestContext->getScheme(),
$this->requestContext->getHost(),
$port,
$baseUrl
);

但就我而言,项目的老开发人员完全改变了这个框架,我将永远无法更新它

关于php - Symfony liipimaginebundle : set request context scheme to https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43111671/

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