The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Putting a message at homepage so that it auto-redirects to...?

4 posters

Go down

Putting a message at homepage so that it auto-redirects to...? Empty Putting a message at homepage so that it auto-redirects to...?

Post by Hiiragi December 13th 2009, 10:30 pm

The forum rules? Thanks.
Hiiragi
Hiiragi
Forumember

Posts : 49
Reputation : 0
Language : THEWAHOOBOX

http://glaceonms.com/

Back to top Go down

Putting a message at homepage so that it auto-redirects to...? Empty Re: Putting a message at homepage so that it auto-redirects to...?

Post by Master Marc December 13th 2009, 10:36 pm

Hello,

I get a little confuse when you say, "auto redirect".

If I give you a code and you add it to your homepage message, everytime someone visits your forum's index, they will be re-directed to another site.

So, I only have one more suggestion that I think that you would like.

If I am correct, you want a 'hyperlink'.

Code:
<a href="URL">Text Here</url>

Replace these words with the correct information :

URL = link
Text Here = The text of what your link should say
Master Marc
Master Marc
Hyperactive

Male Posts : 3661
Reputation : 47
Language : English and Spanish.

Back to top Go down

Putting a message at homepage so that it auto-redirects to...? Empty Re: Putting a message at homepage so that it auto-redirects to...?

Post by johnerick-019 December 13th 2009, 11:10 pm

<script>
top.location = 'Yourforum.forumotion.com/forum.htm';
</script>


Heres the Code!//
johnerick-019
johnerick-019
Forumember

Posts : 59
Reputation : 0
Language : English

Back to top Go down

Putting a message at homepage so that it auto-redirects to...? Empty Re: Putting a message at homepage so that it auto-redirects to...?

Post by Agenda December 14th 2009, 8:47 pm

Uhm. It's actually quite simple, but I believe it takes a bit more than that john Wink

Here's a full example for your use on an html page:

Code:
<html>
<head>
<meta http-equiv="Refresh"
content="[insert the delay in seconds before the redirect];url=[insert the full url of the target page here]">
</head>

<body>
<center><p>
Please stand by while we redirect you to the <a href="your target url here">Forum Rules</a>.
</p>
<br>
<p>
If you see this message for more than 5 seconds, please click on the link above!
</p></center>

</body>
</html>

That is a standard redirect message you'll find on most professional wesbites. The user should see the following message:

Putting a message at homepage so that it auto-redirects to...? Redire10

Here's an example code with the prompts removed:
Code:
<html>
<head>
<meta http-equiv="Refresh"
content="3;url=http:/help.forumotion.com">
</head>

<body>
<center><p>
Please stand by while we redirect you to the <a href="help.forumotion.com">Forum of the Forums</a>!
</p>
<br>
<p>
If you see this message for more than 5 seconds, please click on the link above!
</p></center>

</body>
</html>

The number "3" in the first part of the code represents the delay in seconds before the user's browser will attempt the redirect. Providing a link below the first line of text will ensure the user has direct access to the target URL in case an error occurs, or their browser is a couch potato and won't move. Wink
Agenda
Agenda
Forumember

Male Posts : 172
Reputation : 9
Language : English

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum