views:

43

answers:

1

I want to remove the login page from a Drupal site so that the site is open and public-facing. Only the admin would need to login. Does anyone know how this can be accomplished?

+3  A: 

You can't remove the login page, because the administrators will need one to login.

You could, however, give anonymous users access to whatever you like. So that you don't have to be logged in the use any feature of the site. If users are to create content or do other stuff, you will need for them to login, so that you can tell them apart.

Edit
To configure the access control, you'll have to go to admin/user/permissions, where you can select which permissions anonymous users (and other user roles) should have.

googletorp
Thanks, that is what I am trying to do. How can I give anonymous users access to a page/part of the site?
Just figured it out before reading your reply, thank you though - you pointed me in the right direction - seems obvious in hindsight!