如何在服务器上仅安装 Joomla 网站页面而不安装管理员页面

发布于 2024-09-07 03:27:22 字数 77 浏览 4 评论 0原文

我已经在本地电脑上准备了简单的 html 网站。现在我只想将没有管理员后端页面的主网站页面放在服务器上。我在谷歌上尝试了几次查询,但没有用。

I have prepared my simple html website on my local pc. Now I want to put only the main website pages without administrator backend pages on server. I tried several queries on google but of no use.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苍景流年 2024-09-14 03:27:22

Joomla 页面不是“简单的 html 页面”,它们是复杂的 .php 脚本。您不能将管理员后端页面离开服务器,因为 Joomla 需要它们才能运行。但是,您可以做的是修改您的服务器配置(我使用 Apache2)以使 Web 浏览器无法访问管理员目录。我经常在虚拟主机块内的 Joomla 网站上执行此操作。

# Deny access to Joomla administrator directory
<Directory "/your/joomla/install/administrator/">
Order Allow,Deny
</Directory>

您需要将其注释掉并重新启动 Apache 才能访问管理员控制台。

Joomla pages are not 'simple html pages,' they are complex .php scripts. You can't leave the administrator backend pages off the server because they are required by Joomla to function. What you can do, however, is modify your server configuration (I use Apache2) to make the administrator directory inaccessible to web browsers. I do this routinely on my Joomla sites within a virtualhost block.

# Deny access to Joomla administrator directory
<Directory "/your/joomla/install/administrator/">
Order Allow,Deny
</Directory>

You'll need to comment this out and restart Apache to access the administrator console.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文