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 4421098 commit 3a88a38Copy full SHA for 3a88a38
lib/internal/Magento/Framework/Filesystem/Driver/Http.php
@@ -35,6 +35,11 @@ public function isExists($path)
35
36
$status = $headers[0];
37
38
+ /* Handling 302 redirection */
39
+ if (strpos($status, '302 Found') !== false && isset($headers[1])) {
40
+ $status = $headers[1];
41
+ }
42
+
43
if (strpos($status, '200 OK') === false) {
44
$result = false;
45
} else {
0 commit comments