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 - 如何禁用前端登录组件?
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
