Oh, I see. No, you won’t be able to view the front end of the site even if you are logged in. You will be able to view the WordPress admin (backend).
From a technical perspective, there are issues with trying to conditionally handle 301 redirects based on whether someone is logged in. The biggest one is that if you visit the front end, then log in, the browser has already cached that redirect and will bypass any code that would do a login check.
It is possible to work around this, however. There is an advanced settings section on the plugin settings page that lets you prevent redirects based on the “Excluded Query Parameters” setting. If you were to set, let’s say, noredirect
as the value in that field, you can then append ?noredirect
to any front-end URL to view it without being redirected. This does mean you’ll need to copy a front-end link from the WordPress admin, append that URL parameter, and then load the page to view it.