我有一个index.php文件,其中包含2个包含的文件
require("stats.php");
require("stats_encry.php");
现在,如果用户只是通过搜索转到index.php(通过访问mysite.com/root/index.php)或直接我希望索引加载stats_encry.php
但是如果用户转到index.php?auth = jHh87fBinJ0Nj1EcDPOPxeXQe我想加载stats.php而不是stats_encry.php
这个想法是为了防止有人看到某些内容,如果他们意外地在index.php页面中结束。因此,如果我给某人索引文件的特定网址,并在最后添加一个值,他应该能够看到内容(将通过stats.php加载)
我如何做index.php?非常感谢您的帮助..
答案 0 :(得分:0)
您可以查看$_GET
:
if (isset($_GET['auth'])
{
require 'stats_encry.php';
}
else
{
require 'stats.php';
}