URL을 추가하고 HTTP HEAD 요청을 ?page_id=-1
수행하십시오 .
자체 설치된 WordPress 블로그에서 404 응답이 발생합니다.
wordpress.com 블로그에서 301 응답이 발생합니다 (리디렉션을 따르는 경우 200 응답으로 끝남).
WordPress 이외의 사이트에서는 200 개의 응답을 받아야합니다 (쿼리 문자열이없는 원래 URL에 200이 있다고 가정 할 경우). 쿼리 문자열에 차이가 없어야합니다.
HEAD 요청 이있는 예 http://blog.stackoverflow.com/2011/03/a-new-name-for-stack-overflow-with-surprise-ending/?page_id=-1
:
HTTP/1.1 404 Not Found
Server: Apache/2.2.9 (Ubuntu) DAV/2 PHP/5.2.6-2ubuntu4.2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g
Content-Encoding: gzip
Vary: Cookie,Accept-Encoding
Cache-Control: no-cache, must-revalidate, max-age=0
Last-Modified: Thu, 07 Jun 2012 08:53:01 GMT
Date: Thu, 07 Jun 2012 08:53:01 GMT
Keep-Alive: timeout=15, max=100
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Pragma: no-cache
Connection: Keep-Alive
X-Powered-By: PHP/5.2.6-2ubuntu4.2
X-Pingback: http://blog.stackoverflow.com/xmlrpc.php
Content-Type: text/html; charset=UTF-8
다음에 대한 HEAD 요청 이있는 예 http://dailycrave.wordpress.com/2012/06/01/three-cheese-grilled-pizza/?page_id=-1
(리디렉션 추적 해제) :
HTTP/1.1 301 Moved Permanently
X-Pingback: http://dailycrave.wordpress.com/xmlrpc.php
Server: nginx
Expires: Wed, 11 Jan 1984 05:00:00 GMT
X-Hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.
Location: http://dailycrave.wordpress.com/2012/06/01/three-cheese-grilled-pizza/
Pragma: no-cache
Cache-Control: no-cache, must-revalidate, max-age=60
Connection: close
Last-Modified: Thu, 07 Jun 2012 09:01:09 GMT
Content-Type: text/html; charset=UTF-8
Date: Thu, 07 Jun 2012 09:01:09 GMT
(X-Hacker 부활절 달걀에 주목하십시오!)
wordpress.com 블로그에 대한 301 리디렉션을 따르면 다음과 같이 끝납니다.
HTTP/1.1 200 OK
Server: nginx
Vary: Accept-Encoding, Cookie
Last-Modified: Thu, 07 Jun 2012 09:48:26 GMT
Cache-Control: max-age=172, must-revalidate
Connection: close
Date: Thu, 07 Jun 2012 09:50:34 GMT
Transfer-Encoding: Identity
Content-Encoding: gzip
Link: <http://wp.me/pXGqK-27g>; rel=shortlink
X-Pingback: http://dailycrave.wordpress.com/xmlrpc.php
Content-Type: text/html; charset=UTF-8
X-Nananana: Batcache
X-Hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.
http://wp.me/
URL을 포함하는 "링크"헤더에 주목하십시오. URL은 모든 wordpress.com 호스팅 블로그에 공통적 인 것으로 보이며이를 식별하는 데 사용될 수 있습니다.
?page_id=-1
URL을 전달 하면 URL 세그먼트의 기본 라우팅이 재정의 되기 때문에 이것이 효과가 있다고 생각합니다 . ID가 -1 인 페이지가 없으므로 대신 404 / 리디렉션이 제공됩니다.