|
Few things.
One: Meta tags:
<meta http-equiv="refresh" content="1;URL=http://thecsports.com/" /> (replace 1 with how many seconds of wait time before transfer.)
Two: Javascript:
<script type="text/javascript">window.location.href = 'http://thecsports.com/'</script>
(.href provides more browser safe javascript, but I wouldn't suggest javascript for this anyway. If someone has javascript disabled then they don't get redirected.)
Three: PHP:
header("Location: http://thecsports.com/");
|