Drupal 7:仅允许匿名访问者访问主页
我正在 drupal 7 上构建一个管理系统。我不允许匿名用户查看已发布的内容(出于明显的原因),但我想让他们只查看一个页面,即主页,该页面有一个欢迎页面消息和登录表单。我怎样才能做到这一点?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通常为需要我使用的模块未提供的自定义功能的网站构建一个小模块,在这种情况下,您可以简单地在模块文件中使用以下内容构建一个模块。
你需要一个带有 drupal 的模块的 .info 文件,没有多余的装饰,如果你只是从另一个模块中打开一个来看看它们的外观,那么这是非常不言自明的。
以这种方式处理它的好处是可以灵活地将其他自定义功能添加到同一模块中。
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.
我喜欢特雷的回答,但你可以做得更简单。
这将为所有用户提供一个空白页面。然后创建一个仅向匿名用户显示且仅显示在首页(“”)的块。根据需要为其他角色创建其他块。这样,您不需要任何特殊命令来编辑它。
感谢 Trey 确认没有核心方法可以做到这一点。 (您可以使用节点访问或首页模块,但我没有尝试它们,因为这太轻量级了。)
I like Trey's answer, but you can do it even more simply.
This gives you a blank page for all users. Then create a block shown only to anonymous users and only on the front page (""). Create other blocks for other roles as needed. In this way, you don't need any special command to edit it.
Thanks Trey for confirming that there is no core way to do this. (You can use node access or front page modules, but I didn't try them because this is so lightweight.)
我认为这个模块可以提供您所需要的。使用它,您可以启用每个内容的访问设置,以便您可以自定义每个内容节点的访问。
I think this module can provide what you need. With it you can enable per content access settings, so you can customize the access for each content node.