Tural Abiyev adlı üyeden alıntı
.htaccess içinRedirect 301 /film-adi.html/2 http://domain.com/film-adi.html
.php için
header("Location: http://domain.com/film-adi.html ", true, 301);
exit();
?>
.html meta tag için
.asp için
<%@ Language="VBScript" %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://domain.com/film-adi.html"
Response.End
%>
.java script için
<script>
window.location.replace("http://domain.com/film-adi.html");
</script>
.htaccess için olanda ilki için domain yazmıyor muyuz olmadı galiba?