Security 如何从域中删除cms仪表板登录页

Security 如何从域中删除cms仪表板登录页,security,concrete5,Security,Concrete5,我有几个域在CMS的单个实例下运行 www.domain.ru-俄语 www.domain.com-英语 www.domain.it-itally 内容编辑器在以下路径上工作:www.otherdomain.com/dashboard,此域仅限于特定url 但是,我想阻止人们访问www.domain.ru/dashboard或www.domain.com/dashboard 你真的要这么做吗?我只是想通过尝试使用机器人登录来最小化风险 编辑 这是我的css文件 # -- concrete5 ur

我有几个域在CMS的单个实例下运行

www.domain.ru-俄语
www.domain.com-英语
www.domain.it-itally

内容编辑器在以下路径上工作:www.otherdomain.com/dashboard,此域仅限于特定url

但是,我想阻止人们访问www.domain.ru/dashboard或www.domain.com/dashboard

你真的要这么做吗?我只是想通过尝试使用机器人登录来最小化风险

编辑
这是我的css文件

# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
# -- concrete5 urls end --
#--5个URL开始--
重新启动发动机
重写基/
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}/index.html-F
重写cond%{REQUEST_FILENAME}/index.php-F
重写规则。index.php[L]
#--结束--

谢谢

为什么不使用htaccess文件来阻止对仪表板页面的访问

因为它是一个指向域www.otherdomain.com/的域别名,并且该域已经有了自己的.htaccess文件,谢谢。请解释一下如何使用?我不知道如何处理共享.htaccess中的特定域。谢谢,我可以解释,但我需要你的htaccess文件。看看htaccess+htpasswd文件。