I’m building an administration system on drupal 7. I’m not allowing anonymous users to view published content (for obvious reasons), but I’d like to allow them to view just one single page, the homepage, which has a welcome message and the login form. How can I do that?
I’m building an administration system on drupal 7. I’m not allowing anonymous users to
Share
I usually build a small module for sites that require custom functionality not provided by modules I use, in this case you could simply build a module with the following in the module file.
you need a .info file for the module with drupal, no frills, pretty self explanatory if you just open up one from another module to see how they look.
The benefit to handling it this way is the flexibility of adding other custom functionality to this same module down the line.