|
@@ -104,7 +104,6 @@ public class RedirectController {
|
|
|
public String toFleaMarketForm() {
|
|
|
return "redirect:/flea-market/form.html";
|
|
|
}
|
|
|
-
|
|
|
/**
|
|
|
* 商品搜索列表
|
|
|
*/
|
|
@@ -116,6 +115,19 @@ public class RedirectController {
|
|
|
public String toSearchProduct2(@RequestParam("keyword") String keyword) {
|
|
|
return "redirect:/product/list.html?keyword=" + keyword;
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 旧首页
|
|
|
+ */
|
|
|
+ @GetMapping("/index.action")
|
|
|
+ public String toIndex() {
|
|
|
+ return "redirect:/index.html";
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 旧注册页
|
|
|
+ */
|
|
|
+ @GetMapping("/web/login/view/register_new_vip.jsp")
|
|
|
+ public String toRegister() {
|
|
|
+ return "redirect:/register.html";
|
|
|
+ }
|
|
|
|
|
|
}
|