.htaccess için

Redirect 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>