<c:redirect>标记将浏览器重定向到新的URL。它支持上下文相关的URL和<c:param>标记。
它用于通过使用自动URL重写将浏览器重定向到备用URL。
让我们看一下<c:redirect>标签的简单示例:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>Core Tag Example</title>
</head>
<body>
<c:set var="url" value="0" scope="request"/>
<c:if test="${url<1}">
<c:redirect url="http://srcmini02.com"/>
</c:if>
<c:if test="${url>1}">
<c:redirect url="http://facebook.com"/>
</c:if>
</body>
</html>
输出:
由于变量’url’的值为0, 因此页面被定向到http://srcmini02.com。
评论前必须登录!
注册