我们有两个域example.com
和example.net
。我们希望example.net
的每个请求都重定向到example.com/example_section/index.jsp
。我们怎样才能做到这一点?
答案 0 :(得分:3)
在服务器上的.htaccess文件中
Redirect permanent http://www.example.net/index.jsp http://www.example.com/example_section/index.jsp.
或者您可以在http://www.example.net/index.jsp
页面创建页面并添加
<%
String redirectURL = "http://www.example.com/example_section/index.jsp";
response.sendRedirect(redirectURL);
%>
或者您可以在同一页面上书写
<jsp: forward page="http://www.example.com/example_section/index.jsp"/>
这将转发页面。