JSP
<% response.sendRedirect("http://blueb.net/blog"); %>
ASP
<% Response.Redirect "http://blueb.net/blog" %>
PHP
<? header("Location: http://blueb.net/blog"); exit; ?>
HTML
<meta http-equiv='refresh' content='0;url=http://blueb.net/blog'>
Javascript
<script type="text/javascript">
window.location.href = 'http://blueb.net/blog'
</script>