'redirect'에 해당되는 글 1건

언어별 Redirect

Programming 2010. 8. 31. 11:09
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>

블로그 이미지

fridayss

,