我有一个文件
example.com/process.php
Whcih在网页上提供验证码图片 现在如何使PHP脚本域受保护意味着其他域然后“Example.com”无法获取该PHP文件的处理数据
如何使域受到保护 仅表示
example.com
验证验证码的过程。
这可能。
答案 0 :(得分:1)
在你的process.php上你可以做这样的事情......
<?php
if($_SERVER['HTTP_HOST']=='example.com'))
{
//perform your captcha code.. or whatever..
}
else
{
echo "Sorry other domains/hosts not allowed to access this page";
}