|-摘 HTTP/1.1 302 Found(PHP的get_headers()函数验证链接是否有效)
PHP的get_headers()函数验证链接是否有效,判断url链接是否有效。
array get_headers ( string $url [, int $format ] )
get_headers() 返回一个数组,包含有服务器响应一个 HTTP 请求所发送的标头。如果失败则返回 FALSE 并发出一条 E_WARNING 级别的错误信息。
运行php代码get_headers()
$url='http://langmanzhuyi.cn';//langmanzhuyi.cn是重定向(跳转)到lmzy.club, $res=get_headers($url); var_dump($res);die;
array(19) { [0]=> string(18) "HTTP/1.1 302 Found" [1]=> string(35) "Date: Tue, 12 Apr 2022 23:26:00 GMT" [2]=> string(14) "Server: Apache" [3]=> string(11) "Upgrade: h2" [4]=> string(26) "Connection: Upgrade, close" [5]=> string(26) "location: http://lmzy.club" [6]=> string(17) "Content-Length: 0" [7]=> string(38) "Content-Type: text/html; charset=UTF-8" [8]=> string(15) "HTTP/1.0 200 OK" [9]=> string(35) "Date: Tue, 12 Apr 2022 23:26:00 GMT" [10]=> string(14) "Server: Apache" [11]=> string(11) "Upgrade: h2" [12]=> string(26) "Connection: Upgrade, close" [13]=> string(89) "Set-Cookie: advanced-wk-front=30111651d05c02ac74055e4e9f9818b4; path=/; domain=.lmzy.club" [14]=> string(38) "Expires: Thu, 19 Nov 1981 08:52:00 GMT" [15]=> string(50) "Cache-Control: no-store, no-cache, must-revalidate" [16]=> string(16) "Pragma: no-cache" [17]=> string(221) "Set-Cookie: _csrf-wk-front=78b507540cff55157880426dad9ee0d37b9c475777d0178f75e29ebea99fe391a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-wk-front%22%3Bi%3A1%3Bs%3A32%3A%22DVgwNSq4VK2epR8tytFllhQN5MtVa9AZ%22%3B%7D; path=/; HttpOnly" [18]=> string(38) "Content-Type: text/html; charset=UTF-8" }
HTTP302 Found
重定向状态响应代码指示所请求的资源已暂时移动到由Location
标题给定的 URL 。浏览器重定向到这个页面,但是搜索引擎不会更新他们到资源的链接(在 SEO 中,据说链接果汁不会被发送到新的 URL)。
即使规范要求方法和主体在执行重定向时不要被更改,但并非所有用户代理都符合此处,并且您仍然可以在此找到有问题的软件。因此,建议设置302
代码仅作为一个响应GET
或HEAD
方法和使用307
Temporary Redirect
代替,作为该方法的变化被明确地禁止在这种情况下。
...
浏览更多内容请先登录。
立即注册
更新于:2022-04-13 07:49:30
相关内容
常用的网络协议学习整理
HTTP/1.1 302 Found(PHP的get_headers()函数验证链接是否有效)
HTTP/1.0 200 OK(PHP的get_headers()函数验证链接是否有效)
centos服务器运行中遇到的问题 out of memory killed process 2480 htt...
生产出现oom(out of memory)问题,怎么排查?
Linux终端查看最消耗CPU内存的进程
解决Apache长时间占用内存大的问题,Apache 内存优化方法
什么是 SSL、TLS 和 HTTPS?
详解 HTTPS、TLS、SSL、HTTP区别和关系
SSL/TLS协议运行机制的概述
推荐内容