웹/php

페이지 이동

wakira 2014. 5. 29. 07:54

PHP

<?header("Location:abc.php")?>

 

JSP

<jsp:forward page="abc.jsp"/>  또는

<% response.sendRedirect("abc.jsp"); %>  

 

ASP

<% Response.redirect "download.asp"  %>

 

자바스크립트

 

<script type="text/javascript">

     location.replace("abc.html");

</script>






<html>

<script type="text/javascript">

     location.replace("page/index.html");

</script>

<body>

</body>

</html>