标签: redirect mobile query-string
我有接收查询字符串的页面,我想要它,以便如果用户在移动网站上,它会将它们重定向到该页面的移动版本并随之移动查询字符串。我该怎么做?
感谢先进。
答案 0 :(得分:1)
请求转发在这种情况下不起作用吗?
RequestDispatcher rd = getServletContext().getRequestDispatcher(mobileSiteUrl); rd.forward(req, resp);