300x250
각 언어별 리다이렉트 구문들
1. html
<meta http-equiv='refresh' content='0;url=redirect_url'>
2. javascript
<script>
document.location.href = ‘redirect_url’;
</script>
3. PHP
<?php
header("Location: redirect_url");
?>
4. JSP
<%
response.sendRedirect("redirect_url");
%>
5. ASP
<%
response.redirect "redirect_url"
%>
300x250
'개발' 카테고리의 다른 글
Google reCAPTCHA 를 사용하기 위해 도메인 등록하고 Site Key 를 얻는 방법 (0) | 2015.05.01 |
---|---|
jQuery 에서 document ready와 window load의 차이 (0) | 2015.04.29 |
PHP 에서 숫자 표현 (0) | 2015.04.09 |
PHP 에서 날짜 시간 문자열로 가져오기 (0) | 2015.04.09 |
CSS 스타일 문단 정렬 left, right, center, justify, initial, inherit (0) | 2015.03.04 |