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>
'웹 > php' 카테고리의 다른 글
wordpress / ubuntu 16.04 설치 (0) | 2017.04.01 |
---|---|
centos 6.5 / 그누보드4.34.15 (11.10.24) / phpMyAdmin (0) | 2017.03.18 |