We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e34bc commit 478e402Copy full SHA for 478e402
Classes/Cache/IdentifierBuilder.php
@@ -32,8 +32,8 @@ public function getFilepath(string $requestUri): string
32
}
33
$urlParts = parse_url($requestUri);
34
$pageIdentifier = [
35
- 'scheme' => $urlParts['scheme'] ?? 'https',
36
- 'host' => $urlParts['host'] ?? 'invalid',
+ 'scheme' => strtolower($urlParts['scheme'] ?? 'https'),
+ 'host' => strtolower($urlParts['host'] ?? 'invalid'),
37
'port' => $urlParts['port'] ?? ('https' === $urlParts['scheme'] ? 443 : 80),
38
];
39
$parts = [
0 commit comments