Blame view

yohobuy/www.yohobuy.com/configs/routes.index.ini 993 Bytes
1
;woman首页
whb authored
2 3 4 5 6 7 8 9 10 11 12
routes.girlindex.type = "rewrite"
routes.girlindex.match = "/woman"
routes.girlindex.route.module = Index
routes.girlindex.route.controller = Girls
routes.girlindex.route.action = index

;验证码
routes.passportimage.type = "rewrite"
routes.passportimage.match = "/passport/images"
routes.passportimage.route.module = Passport
routes.passportimage.route.controller = Images
xiaowei authored
13 14 15 16 17 18 19 20 21 22 23
routes.passportimage.route.action = index

; 登录页
routes.login.type = "rewrite"
routes.login.match = "/signin.html"
routes.login.route.module = Passport
routes.login.route.controller = Login
routes.login.route.action = Index

; 登录退出页
routes.logout.type = "rewrite"
xiaowei authored
24
routes.logout.match = "/logout.html"
xiaowei authored
25 26 27 28 29 30 31 32 33 34
routes.logout.route.module = Passport
routes.logout.route.controller = Login
routes.logout.route.action = Out

; 注册页
routes.reg.type = "rewrite"
routes.reg.match = "/reg.html"
routes.reg.route.module = Passport
routes.reg.route.controller = Register
routes.reg.route.action = Index