html 리다이렉트

32_전산SW 2016. 4. 13. 09:23

HTML 리다이렉트 방법





* PHP
<? 
header("Location:URL");
?>
 
* HTML
<meta http-equiv=Refresh content=0; url="URL">
 
* Javascript
<script type="text/javascript">
location.href="URL";
</script>
 
* ASP
<%
response.redirect "URL"
%>
 
* JSP
<%
response.sendRedirect("URL");
%>

* html 프레임셋
<html>
<head>
<title>타이틀 </title>
</head>
<fremeset cols="100%">
<frame src="URL">
</html>


Posted by 뱅크패닉
,