I think sessions need to be logged into the database such that repeat sessions after 24 hours visits a link. Php would work fine.On page load or on user interaction like click on button?
There is no need for database. He can use device's local storage. On the other side we do not know what stack OP uses. For all we know he can use GoI think sessions need to be logged into the database such that repeat sessions after 24 hours visits a link. Php would work fine.
Please let us know following:hi
I want to redirect visitors to a specific link once every 24 hours how?
On page loadOn page load or on user interaction like click on button?
What programming language? Do you have some backend to manage domains or you want them in an array at website?On page load
phpWhat programming language? Do you have some backend to manage domains or you want them in an array at website?
$url_list = [url_1, url_2, url_3, url_4, url_5];
$pick_one = array_rand($url_list);
$url_to_go = "Location: {$url_list[$pick_one]}"
header($url_to_go);