Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的主机帐户上维护了几个 Joomla 实例,主要是 2.5 次安装,但也有一些 1.5 次安装。
是否可以在所有实例的根目录中使用一个 .htaccess 文件。我需要修改什么才能做到这一点?○
我想为所有这些密码保护管理员文件夹。是否可以从根目录执行此操作,还是我需要在每个管理员文件夹中有一个 .htaccess 文件?下一个问题是,我将如何编码?
您可以将 .htaccess 放在您选择的目录中,然后将文件符号链接到您网站的每个根目录。
ln -s /var/www/.htacess /var/www/joomla-site-one/.htacess
然后所有更改都将被镜像。只要你不想要额外的变化。
另一种方法是制作一个 php 文件,然后将其命名为 .htacess 并告诉 Apache 将其作为 php 运行,但这还有其他安全问题。