joomla 3 - 如何禁用前端登录组件?

2022-01-06 00:00:00 php joomla

我搜索并禁用了在侧边栏中隐藏登录表单的 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.

相关文章