---
id: 20
title: 'www – Redirect Page'
date: 2003-04-27T14:37:57+00:00
author: hky
layout: post
guid: http://lostfocus.org/blog/?p=20
permalink: /www-redirect-page/
dsq_thread_id:
 - 2165134119
tags:
 - Lab
---
Cara Redirect webpage dalam bermacam gaya

kasus : redirect ke lostfocus.org

**HTML**

<html>

<head>

<meta http-equiv=&#8221;Refresh&#8221; content=&#8221;0;URL=http://lostfocus.org&#8221;>

</head>

</html>

**PHP**

<?

header (&#8220;Location: http://lostfocus.org&#8221;);

?>

**CGI**

 * Perl
#!/usr/bin/perl

print &#8220;Location: http://lostfocus.org\n\n&#8221;;

 * Python
#!/usr/local/bin/python

print &#8220;Location: http://lostfocus.org\n\n&#8221;;

(jangan lupa chmod file nya ke 755)

**JSP**

<%

response.sendRedirect(&#8220;http://lostfocus.org&#8221;);

%>