Make Login as my homepage

How to make login page as my main home page…

Can anyone please help me out here?
I want to make login page as my default homepage…

Hi,
I think one of the possible approach is comprehensive theming. But you must be careful overriding “index/home” page and other “static templates”. I can recommend this repo from tutor https://github.com/overhangio/indigo for customization’s…
Regards,

Murat

I tried redirect with meta tag but it still loads homepage for a second then it redirects to /login

I solved it by vhost proxy.

<VirtualHost *:80>
        ServerName your.domain.com
        ServerAdmin youremail@domain.com
        RedirectMatch "^/$" https://your.domain.com/login
        Redirect / https://your.domain.com/
</VirtualHost>

Hi @hkpanchani,

Where and in which file did you add this … tag in?