gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 18:27:08 25 4
gpt4 key购买 nike

我们有两个域,example.comexample.net· 我们希望对 example.net 的每个请求都重定向到 example.com/example_section/index.jsp。我们怎样才能实现这一目标?

最佳答案

在服务器上的 .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"/>

这将转发页面。

关于jsp - 我们如何将一个域的所有请求重定向到另一个域的一部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2764721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com