Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、xyz.comがwebappROOTを実行するとします。Tomcatを構成するにはどうすればよいですか。そのため、デフォルトでxyz.comはxyz.com/abcに移動します[abcはROOT内のディレクトリです]
JSTLを設定している場合は、ROOT/index.jspからリダイレクトできます。
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <c:redirect url='abc' />
または、ROOT/index.jspのスクリプトレットを使用します。
<% response.sendRedirect("http://xyz.com/abc"); %>