joomla 3 - how to disable front end login component?(joomla 3 - 如何禁用前端登录组件?)
问题描述
我搜索并禁用了在侧边栏中隐藏登录表单的 joomla 登录模块.但是如果我把
I have searched and disabled joomla login module which hides login form in sidebar. But if I put
index.php/component/users
地址栏中的 URL 仍然显示登录表单.
URL in address bar it still displays login form.
有什么办法可以隐藏这个登录表单吗?
Is there any way to hide this login form ?
推荐答案
您可以通过 .htaccess 文件中的自定义重写规则来防止这种情况发生.
You can prevent that by custom rewrite rules in .htaccess file.
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule index.php/component/users index.php [F]
或尝试创建隐藏菜单项(堆叠在没有模块的菜单中,因此不会显示在页面上)并将其访问级别设置为特殊",但我不确定这个.
or try creating hidden menu item (stacked in menu that doesn't have module so it's not shown on the page) and setting it's Access level to 'Special' but I'm not sure about this one.
这篇关于joomla 3 - 如何禁用前端登录组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:joomla 3 - 如何禁用前端登录组件?
基础教程推荐
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- php中的foreach复选框POST 2021-01-01
- Web 服务器如何处理请求? 2021-01-01
- 将变量从树枝传递给 js 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- php中的PDF导出 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
