Basic Forwarding Page for a website

Basic Forwarding Page for a website

Author
Discussion

elster

Original Poster:

17,517 posts

212 months

Friday 19th November 2010
quotequote all
I am wanting to create a simple image on a website that will link to the facebook page and contact details show on it.

I am wanting to do this while those in charge of the purse strings make a decision on the new website after the old one was trashed and no one knows the login details.

Does anyone know the best way to go about it? Can I reg for web hosting with 123-reg (who the website was bought with) or is there an alternatively that would be cheaper as it would only be for a few weeks.

Also the next thing I want is if someone could point me in the right direction in learning very quickly how to post a picture online and then add a facebook link, a coming soon and also the contact details.

Would I be best just to stick it up with html?

htmlbloke

60 posts

163 months

Friday 19th November 2010
quotequote all
You should be able to log in to the 123-reg control panel and re-direct the url to wherever you like, no need for hosting wink

Edited by htmlbloke on Friday 19th November 15:17

john_p

7,073 posts

252 months

Friday 19th November 2010
quotequote all
Google Sites? You can use your domain with it, just change the CNAME records with 123-reg

htmlbloke

60 posts

163 months

Friday 19th November 2010
quotequote all
Here's the markup you'll need if you are putting a page together, rather than a simple redirect. Apologies if you are more than capable of doing this yourself smile

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Your site name</title>
<style type="text/css">
* {margin:0; padding:0}
body {text-align:center}
img {border:none}
a {text-decoration:none}
</style>
</head>

<body>
<a href="http://www.facebook.com/yourPage"><img src="path/to/your/image.jpg" alt="" /></a>
</body>
</html>


Edited by htmlbloke on Friday 19th November 15:16

illmonkey

18,284 posts

200 months

Friday 19th November 2010
quotequote all
index.php

with this in

<?php
/* Redirect browser */
header("Location: http://***LINK***");
exit;
?>

Efbe

9,251 posts

168 months

Saturday 20th November 2010
quotequote all
don't automatically redirect. just put a link on the page.

automatic redirection is bloody annoying, and could possibly mean that the link to the original page is marked as spam, so being the site it is redirecting to.
a simple link is what people want.

elster

Original Poster:

17,517 posts

212 months

Sunday 21st November 2010
quotequote all
htmlbloke said:
Here's the markup you'll need if you are putting a page together, rather than a simple redirect. Apologies if you are more than capable of doing this yourself smile

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Your site name</title>
<style type="text/css">
* {margin:0; padding:0}
body {text-align:center}
img {border:none}
a {text-decoration:none}
</style>
</head>

<body>
<a href="http://www.facebook.com/yourPage"><img src="path/to/your/image.jpg" alt="" /></a>
</body>
</html>


Edited by htmlbloke on Friday 19th November 15:16
Sorry for the slow reply, just got round to trying it.

Brilliant, thanks.