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