使用 htaccess 基于 php 中的日期进行重定向

发布于 2024-10-21 17:23:59 字数 211 浏览 2 评论 0原文


如果日期小于某个日期,我想重定向到 Page not found.php 页面。
例如,
www.example.com/index.php?dt='2011-03-11'。
该索引页根据日期提取数据库中的数据进行显示。如果传递的日期小于某个日期,它应该重定向到 pagenotfound.php 。我怎样才能使用 htaccess 做到这一点?

谢谢。

I want to redirect to Page not found.php page if the date is less then some date.
for example,
www.example.com/index.php?dt='2011-03-11'.

this index page fetches data in db based on date for display. if the passed date is less than some date it should redirect to pagenotfound.php . how can i do this using htaccess?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天涯离梦残月幽梦 2024-10-28 17:23:59

您必须在 PHP 脚本中测试日期;并使用 header() 进行重定向 函数:

if ($_GET['dt'] <= date('Y-m-d')) {
    // Redirect to your other page
    header('Location: http://www.yoursite.com/page-not-found.php');
    exit();
}

Note : before doing this test, it might be interesting to :

  • 使用 isset()
  • 验证它是否包含有效日期

You'll have to test for the date, in your PHP script ; and redirect, using the header() function :

if ($_GET['dt'] <= date('Y-m-d')) {
    // Redirect to your other page
    header('Location: http://www.yoursite.com/page-not-found.php');
    exit();
}

Note : before doing this test, it might be interesting to :

  • Ensure that $_GET['dt'] exists, using isset()
  • Verify if it contains something that's a valid date
久光 2024-10-28 17:23:59

为什么需要通过.htaccess?似乎这个逻辑最好放在脚本本身中:

if ($date < $somedate) {
    header('HTTP/1.1 302 Found');
    header('Location: http://www.example.com/error.php');
    exit;
}

Why does it need to be via .htaccess? Seems like this logic is better put in the script itself:

if ($date < $somedate) {
    header('HTTP/1.1 302 Found');
    header('Location: http://www.example.com/error.php');
    exit;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文