Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://example.com/example.php将基于服务器的 from 重定向到的最佳方法是http://example.com/example.php?date=2013-06-05什么?
http://example.com/example.php
http://example.com/example.php?date=2013-06-05
使用标题:
header('Location: http://example.com/example.php?date=2013-06-05'); exit;
如果您想根据今天的日期重定向:
header('Location: http://example.com/example.php?date=' . date('Y-d-m')); exit;