What redirection plugin should i use?

Rains

Regular Member
Joined
Apr 8, 2015
Messages
378
Reaction score
154
so i need a wp plugin to redirect my blog visitor. here is the flow
i will share my link in social media, and when someone click the link they will visit my site for at least 1 second and redirect to other page/other site . is there a plugin that can do this job?
thanks bhw
 
I always do it directly with php code.. but I LOVE your profile picture as it has two top things I love in this world ^_^. So I went to search for your request.

Here is a simple plugin. You can specify the page and how many seconde before redirect and place the shortcode in any page you want
https://wordpress.org/plugins/shortcode-redirect/
 
I always do it directly with php code.. but I LOVE your profile picture as it has two top things I love in this world ^_^. So I went to search for your request.

Here is a simple plugin. You can specify the page and how many seconde before redirect and place the shortcode in any page you want
https://wordpress.org/plugins/shortcode-redirect/
Thanks for the answer.
no need for a plugin, just put this in the header.php file.
redirection happens after 3 seconds here, you can replace blackhatworld link with yours.

setTimeout(function(){ window.location.replace("https://www.blackhatworld.com/"); }, 3000);

make sure you surround the code with the script tags

https://www.w3schools.com/jsreF/met_win_settimeout.asphttps://www.w3schools.com/howto/howto_js_redirect_webpage.asp
Work like a charm, thanks.
 
I use the redirection module which is built into RankMath.

I haven't had any issues with it.
 
Back
Top