我们如何将所有请求重定向到一个域到另一个域的一部分?

时间:2010-05-04 11:12:37

标签: jsp url redirect

我们有两个域example.comexample.net。我们希望example.net的每个请求都重定向到example.com/example_section/index.jsp。我们怎样才能做到这一点?

1 个答案:

答案 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"/>

这将转发页面。

相关问题