webpage forwarding

Are you talking about a simple redirector so when someone accesses the one site they get bumped to the other?

Code:
<html>
<head>
<title>Redirecting...</title>
<script language="JavaScript">
self.location.href='http://www.the-edc.co.uk/forum';
</script>
</head>
<body>
</body>
</html>

edit: Here's an example of how it works:

http://www.doubleklix.com/forum
 
Last edited:
Back
Top Bottom