如何验证 Shopify 商店的 URL?给定一个 URL,我如何知道它是有效 URL 还是 404 页面未找到?我正在使用 PHP。我试过使用 PHP get_headers()
。
<?php
$getheadersvalidurlresponse= get_headers('https://test072519.myshopify.com/products/test-product1'); // VALID URL
print_r($getheadersvalidurlresponse);
$getheadersinvalidurlresponse= get_headers('https://test072519.myshopify.com/products/test-product1451'); // INVALID URL
print_r($getheadersinvalidurlresponse);
?>
但是对于有效和无效的 URL,我得到了相同的响应。
Array
(
[0] => HTTP/1.1 403 Forbidden
[1] => Date: Wed, 08 Jul 2020 13:27:52 GMT
[2] => Content-Type: text/html
[3] => Connection: close
..............
)
我期待有效 URL 的 200 OK 状态代码和无效 URL 的 404。
任何人都可以帮助检查给定的shopify URL是否有效使用PHP?
提前致谢。