有什么用在 JSP 中标记?
<c:redirect> 标签通过启用自动 URL 重写来将浏览器重定向到替代 URL,它支持与上下文相关的 URL,并且还支持 <c:param> 标签。
属性
<c:redirect> 标签具有以下属性 -
属性 | 说明 | 必需 | 默认 |
---|---|---|---|
url | 重定向用户浏览器到的 URL | 是 | 无 |
context | / 后接本地 Web 应用程序的名称 | 否 | 当前应用程序 |
示例
如果您需要将参数传递给 <c:import> 标签,请使用 <c:url> 标签首先创建 URL,如下所示 -
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %> <html> <head> <title><c:redirect> Tag Example</title> </head> <body> <c:redirect url = "http://www.photofuntoos.com"/> </body> </html>
以上代码会将请求重定向到 http://www.photofuntoos.com - 自己尝试一下。
广告