Webmasterların bilmesi gereken sayfa yönlendirme kodları.
javascript <meta http-equiv="refresh" content="0;url=http://www.bilisimturk.org">// head tagları arasına yazılır
<script type="text/javascript">
document.location="http://www.bilisimturk.org";
</script>
PHP <?php
header("Location:http://www.bilisimturk.org");
?> Jsp <%
response.sendRedirect("http://www.bilisimturk.org");
%>
//ya da
<jsp:forward page="http://www.bilisimturk.org"></jsp:forward>Asp <%
Response.Redirect("http://www.bilisimturk.org");
%>Asp.Net //
Response.Redirect("http://www.bilisimturk.org"); // .aspx.cs dosyasının içine
// Bu yazı Bilisimturk.org tarafından yazılmıştır.Lütfen alıntı yaparken kaynak gösteriniz.
Kaynak :
http://bilisimturk.org/forum/Sayfa-Y...me-Kodu-konusu