每次一个用户来到我的主页,即index
文件,我想要一个脚本运行,以便我网站的另一个随机页面每次观看。
我更喜欢在Javascript或PHP中执行此操作。我想象的索引文件的伪代码看起来像这样:
var randomNumber = functionThatReturnsRandomNumber(10);
var urlRedirect;
if (randomNumber == 0)
urlRedirect = 'xxxx.com/folder0/index.html
if (randomNumber == 1)
urlRedirect = 'xxxx.com/folder1/index.html
if (randomNumber == 2)
urlRedirect = 'xxxx.com/folder2/index.html
...
if (randomNumber == 9)
urlRedirect = 'xxxx.com/folder9/index.html
然后是一些将浏览器重定向到urlRedirect.
有什么想法吗?
修改
我想我需要更加明确。有人请建议我如何才能完成上述任务?感谢。
答案 0 :(得分:4)
+1以获得出色的用户体验。
作为一个用户,你最好在PHP级别上这样做,否则会有一点loading->page glimpse->loading->new page
的打嗝(作为访问者,如果发生这种情况,我会感到粗略。)
但是,只要您有一个“可能的目的地”列表,就可以在index.php
的顶部使用以下内容:
<?php
$possibilities = array(/*...*/);
header('Location: ' + $possibilities[rand(0, count($possibilities) - 1)]);
虽然我可能会把它与会话或cookie结合起来,所以它只适用于第一次访问(除非你希望它每次都能工作)。
答案 1 :(得分:1)
使用重定向标头。
<?php
$location = "http://google.com";
header ('HTTP/1.1 301 Moved Permanently');
header ('Location: '.$location);
?>
对于随机重定向:
<?php
$urls = array('http://1.com',"http://2.com","http://3.com"); //specify array of possible URLs
$rand = rand(0,count($urls)-1); //get random number between 0 and array length
$location = $urls[$rand]; //get random item from array
header ('HTTP/1.1 301 Moved Permanently'); //send header
header ('Location: '.$location);
?>
答案 2 :(得分:1)
如果您要使用Javascript,请使用var randomnumber=Math.floor(Math.random()*11);
生成1到10之间的随机数。然后使用window.location.href=urlRedirect;
将用户重定向到您选择的页面。
答案 3 :(得分:0)
使用PHP:
<?php
$randomNumber = rand(10);
$urlRedirect = '';
if ($randomNumber == 0)
$urlRedirect = 'xxxx.com/folder0/index.html';
if ($randomNumber == 1)
$urlRedirect = 'xxxx.com/folder1/index.html';
if ($randomNumber == 2)
$urlRedirect = 'xxxx.com/folder2/index.html';
...
if ($randomNumber == 9)
$urlRedirect = 'xxxx.com/folder9/index.html';
header ('Location: '.$urlRedirect);
答案 4 :(得分:0)
重定向到随机子目录:
<?php
$myLinks = array("dir-1/",
"dir-2/",
"dir-3/",
"dir-4/",
"dir-5/");
$randomRedirection = $myLinks[array_rand($myLinks)];
header("Location: $randomRedirection");
?>
重定向到随机网站:
<?php
$myLinks = array("http://www.my-site.ie",
"http://www.my-site.eu",
"http://www.my-site.de",
"http://www.my-site.it",
"http://www.my-site.uk");
$randomRedirection = $myLinks[array_rand($myLinks)];
header("Location: $randomRedirection");
?>