假设我有两个名为 html1 和 html2 的 html 文件。html1 包含一个嵌入的 swf 文件。
现在我想要的是用户不能直接通过 url 访问 html2。他必须通过 html1 中 swf 中的链接单击它。有没有办法做到这一点?
如果在 html 中不可能,是否可以在 php 中使用?
谢谢
编辑:
在约翰回答后,我继续尝试他的建议,但我永远无法访问 file2.php,即使我以前去过 file1.php。它不断将我重定向回file1.php,即使它不应该这样做。
我来自 file1.php 的代码
//file1.php
<?php
session_start();
$_SESSION['enableAccessTill']=strtotime("+5 minutes");
?>
这是file2.php
//file2.php
<?php
session_start();
if(!isset($_SESSION['enableAccessTil'])||$_SESSION['enableAccessTil']<time())
{
header("Location: indexFLA.php");
exit;
}
?>
我可能做错了什么?
找到它,这是由于拼写错误 - “enableAccessTil”和“enableAccessTill”