1) php redirect
- สร้างไฟล์ใหม่ในชื่อ myhost.com/index.php
โค๊ด: [Select]
<?php
header( "refresh: 5; url='myhost.com/forums'" );
echo "Please wait while redirecting ...";
exit(0);
?>
1 = 1 sec
0 = immediately
________________________________________
2) html redirect
- สร้างไฟล์ใหม่ในชื่อ myhost.com/index.html
- เพิ่ม <meta http-equiv="refresh" ...> ตามตัวอย่าง
โค๊ด: [Select]
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="refresh" content="5;url=myhost.com/forums/">
<title>Redirect page</title>
</head>
<body>
รอสักครู่ กำลังพาไปหน้าที่ต้องการ
</body>
</html>
________________________________________
3) java script redirect
- สร้างไฟล์ใหม่ในชื่อ myhost.com/index.html
- เพิ่ม script ตามตัวอย่างไว้ใน <head> ... </head>
โค๊ด: [Select]
<html>
<head>
<script langquage='javascript'> window.location="myhost.com/forums"; </script>
</head>
<body></body>
</html>
________________________________________
จากตัวอย่าง ทั้ง 3 แบบ เมื่อเปิดเข้ามา myhost.com จะถูก redirect ไปยัง myweb.com/forums
ที่มา:
http://www.justusers.net/forum/index.php?topic=11346.0