php
[php]
<?php
header(‘HTTP/1.1 301 Moved Permanently’);
header(‘Location: http://www.sitedeexemplo.com’);
?>
[/php]
.htaccess
[text]Redirect 301 / http://www.sitedeexemplo.com [/text]
HTML
[html]<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Redireccionamento</title>
<meta http-equiv="refresh" content="1; url=http://www.sitedeexemplo.com" />
</head>
<body>
</body>
</html> [/html]
Javascript
[js]
<script type="text/javascript">
<!–
window.location = "http://www.sitesample.pt/dir"
//–>
</script>
[/js]
Home