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'>
<% 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>
'Programming' 카테고리의 다른 글
VI 명령어 (0) | 2010.09.03 |
---|---|
IIS 한글도메인 설정 (0) | 2010.08.31 |
[jQuery] 폼의 첫번째 입력가능한 input 폼에 포커스주기 (0) | 2010.08.24 |
MySQL root 비밀번호 분실시 (0) | 2010.07.29 |
PHP 파일 업로드 용량제한 설정 - php.ini (0) | 2010.07.28 |