自动重定向到包含随机数的 url

发布于 2024-11-15 23:46:42 字数 173 浏览 1 评论 0原文

关于如何在此网站上的 URL 链接中生成随机数存在一些问题,但我想做的是,当有人访问该网站时,它会自动将他们重定向到 www.example.com/index.php?9999999 (其中9999999 是一个 6 位随机数)。

到目前为止我还没有取得任何进展。能做到吗?

提前非常感谢, 弗雷泽

There has been some questions on how to generate random numbers in URL links on this site, but what I am trying to do is when someone visits the website , it automatically redirects them to www.example.com/index.php?9999999 (where 9999999 is a 6 digit random number).

I am not getting anywhere with this so far. Can it be done?

Thanks a bunch in advance,
Fraser

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

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

发布评论

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

评论(1

绮筵 2024-11-22 23:46:42

对于 6 位随机数,这应该很好

<?php

   header( 'Location: http://www.example.com/index.php?'.rand(100000,999999)) ;

?>

将其放在您希望人们重定向的页面上

For a 6 digit random number, this should be good

<?php

   header( 'Location: http://www.example.com/index.php?'.rand(100000,999999)) ;

?>

Place it on the page from which you want people to redirect

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文