Login サーブレットからのリクエストを、faculty フォルダー (サブフォルダー) にある TeacherHomePage.jsp に転送しています。ページは表示されますが、URL は /LoginServlet のままです。URLが変更されないのはなぜですか??
HttpSession sc= request.getSession();
if(usertype==0)
{
sc.setAttribute("type", usertype);
sc.setAttribute("id",id );
rd=request.getRequestDispatcher("/faculty/FacultyHomePage.jsp");
rd.forward(request, response);
}