我正在研究iOS UDID检索脚本,遗憾的是陷入了一个小问题.
您可能知道,要检索iOS UDID,用户必须在iOS设备上安装配置文件.之后,设备响应定义到配置文件中的链接.如果用户直接打开检索链接,将不允许使用错误405方法.与以下链接相同:
http://get.udid.io/retrieve/和http://license.if0rce.com/connect/retrieve
/retrieve/index.php中的代码是:
<?php
$data = file_get_contents('php://input');
file_put_contents("data.txt", $data);
?>
我可以添加以下内容来设置自定义错误:
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
header("HTTP/1.0 405 Method Not Allowed");
exit(); }
但这不是专业的方式.我希望用户得到的错误与上述链接完全相同.
有任何想法吗?
感谢您的帮助 :)
解决方法:
Apache未设置为PHP设置状态代码的操作错误文档.
在’custom-msg.php’中,您可以添加要显示的消息.
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
header("HTTP/1.0 405 Method Not Allowed");
include 'custom-msg.php';
exit(); }