Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
8410 มุมมอง

Hi, I have problem with module website, when i install it, i have a homepage with url like 127.0.0.1/ . But my project don't need a homepage. So how can i make it redirect to 127.0.0.1/web/login (login page). I tried with controller but it doesn't work:

@http.route('/', type='http', auth="public")

    def handler(self):

        return werkzeug.utils.redirect('/web/login')

Am i wrong ? Please help me !

Thanks and Regards,

Minh

อวตาร
ละทิ้ง

delete website module you don't need that one. web module is enough.

ผู้เขียน

I think its good ideal, but i just want to hide homepage and i still need some template in module website to inherit for my module. Another way, I find a solution to this problem by write a controller in my module like this:

class Website(Home):

@http.route('/', type='http', auth="public", website=True)

def index(self, **kw):

_logger.warning('oke')

return werkzeug.utils.redirect('/web')

It will help us redirect to url /web.

Thanks and Regards,

Minh

Related Posts ตอบกลับ มุมมอง กิจกรรม
5
ก.ค. 25
16450
2
ส.ค. 23
2943
1
ธ.ค. 20
13670
0
พ.ค. 19
3740
7
มี.ค. 15
18191