%@ page session="false" import="org.opencms.jsp.util.CmsJspVfsAccessBean" %><%--
--%><%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %><%--
--%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%--
--%><%
// Scriptlet code was required for redirection, will be improved...
String target = request.getLocale().getLanguage();
if (!"de".equals(target)) {
target = "en";
}
target = "/demo_" + target + "/intro.html";
pageContext.setAttribute("target", target);
String link = (String)((CmsJspVfsAccessBean)pageContext.getAttribute("vfs")).getLink().get(target);
response.sendRedirect(link);
%>
Please redirect to ${vfs.link[target]}
This page has moved!
Please redirect your browser to: ${vfs.link[target]}