Need Help with redirect page

Status
Not open for further replies.

kzedelb

Newbie
Joined
Dec 24, 2016
Messages
28
Reaction score
16
Hello Guy

I am not that good at coding or in javascript so my question is i have a blog with weebly and i want to redirect a specific page to my website after 10 sec for example.

with wordpress it's possible to do it with a plugin which is not available yet with weebly i think

i want to redirect a page in the blog and not the whole blog.

Thanks for your help !
 
Hi,

You can do this multiple ways. Easiest is with HTML but you can do it with webserver or even domain level, javascript or php.

HTML:
<meta http-equiv="refresh" content="0; URL='http://www.redirect-website.com'" />

You can also write an if statement in your header for specific page to redirect.

Hope this helps
 
<meta http-equiv="refresh" content="WAITTIME;url=yourdomain" />
So content is the number of seconds to wait.
 
There are a lot of ways to perform redirect between pages.

The above mentioned option is just one of those good redirect practices.

You can use either PHP or jQuery to do this but meta tag option is the best one.

Cheers..
 
Status
Not open for further replies.
Back
Top