Free URL Rotator Script

Status
Not open for further replies.
Thank you for sharing this.
 
I couldn't get the script to work on my hosting. I used the following one I found
Code:
<?php

$urls[] = "https://microsoft.com";
$urls[] = "https://amazon.com";
$urls[] = "https://blackhatworld.com";


srand  ((double) microtime( )*1000000);
$random = rand(0,count($urls));

header ("location:" . $urls[$random]);
exit;
?>
 
I couldn't get the script to work on my hosting. I used the following one I found
Code:
<?php

$urls[] = "https://microsoft.com";
$urls[] = "https://amazon.com";
$urls[] = "https://blackhatworld.com";


srand  ((double) microtime( )*1000000);
$random = rand(0,count($urls));

header ("location:" . $urls[$random]);
exit;
?>
fix


PHP:
<?php

$urls[] = "https://microsoft.com";
$urls[] = "https://amazon.com";
$urls[] = "https://blackhatworld.com";

$random = rand(0, count($urls) - 1);

header("Location: " . $urls[$random]);
exit;

?>
 
Oh, nice, not that I need the script rn, but the idea to for example diversify the traffic between multiple landing pages is great, thanks.
 
How does it work, some video please, I want to try this rotator script
 
How does it work, some video please, I want to try this rotator script
Bit hard to explain here on forum, try to search google, or use chat-gpt

I used GPT-4 to generate this answer for you: click

for more precise guide, you need to share more details, are you using wordpress, etc. Do you have a general idea about HTML, JS?

ofc. change the JS file code to the OP's if you want to use his solution
 
Bit hard to explain here on forum, try to search google, or use chat-gpt

I used GPT-4 to generate this answer for you: click

for more precise guide, you need to share more details, are you using wordpress, etc. Do you have a general idea about HTML, JS?

ofc. change the JS file code to the OP's if you want to use his solution
I want to use it with wordpress, I don't know much about html, but I learn quickly, I watch YouTube videos, there isn't much about rotator script in wordpress
 
I want to use it with wordpress, I don't know much about html, but I learn quickly, I watch YouTube videos, there isn't much about rotator script in wordpress
Then go with some WordPress plugin like "redirection" or similar, there are bunch of them, simple google search will help you. "Wordpress random redirection plugin" for example.
 
Then go with some WordPress plugin like "redirection" or similar, there are bunch of them, simple google search will help you. "Wordpress random redirection plugin" for example.
when you do such a search, you get the following: It looks like there aren't many great matches for your search

Do you know of one that is still active?
 
Status
Not open for further replies.
Back
Top