-1

http://example.com/example.php将基于服务器的 from 重定向到的最佳方法是http://example.com/example.php?date=2013-06-05什么?

4

1 回答 1

1

使用标题:

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;
于 2013-06-05T15:55:41.027 回答