我搜索并禁用了joomla登录模块,该模块隐藏了侧边栏中的登录表单。但是,如果我把
index.php/component/users
地址栏中的网址仍会显示登录表单。
有没有办法隐藏此登录表单?
答案 0 :(得分:3)
您可以通过.htaccess
文件中的自定义重写规则来阻止这种情况。
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule index.php/component/users index.php [F]
或者尝试创建隐藏的菜单项(堆叠在没有模块的菜单中,因此它没有显示在页面上)并将其访问级别设置为“特殊”,但我不确定这个。
答案 1 :(得分:0)
在安装Joomla之后立即开始网站开发过程!或者只是为了防止/阻止POST数据,请遵循下一步。
防止Joomla中的所有POST排除/ administrator文件夹! (文件:/.htaccess):
####### Block front-end POST ##############
RewriteCond %{REQUEST_URI} !^/administrator [NC]
RewriteCond %{REQUEST_METHOD} POST
RewriteRule .* index.php [F]
在" / admininstrator"文件夹 - 允许通过IP / DNS访问(文件:/admininstrator/.htaccess):
##### Allow only developers/administrators ####
order deny,allow
deny from all
allow from XXX.XXX.XXX.XXX
XXX.XXX.XXX.XXX - 管理员IP地址。