using PHP:
<?php
header("Location: http://www.example.org");
?>
using Javascript:
<script language="Javascript">
windows.location = "http://www.example.org";
</script>
using ASP:
<%
Response.Redirect "http://www.example.org"
%>
using HTML:
<html>
<head>
<meta http-equiv="refresh" content="0; url=http://www.example.org">
</head>
<body>
Redirecting you now...
</body>
</html>
|