OctoberCms后端无法在子文件夹Apache中工作

时间:2018-01-02 11:01:07

标签: php octobercms octobercms-plugins octobercms-backend

我在子文件夹中安装了我的VPS中的OctoberCMS的新项目,例如/ var / www / myCMS /(这是我安装的OctoberCMS)。

当我通过域名示例访问我的网站时:www.mydomain.com/myCMS/我有一张欢迎演示的图片,图片底部:

enter image description here

但访问后端(www.mydomain.com/myCMS/backend)我有这个错误:

enter image description here

任何解决方案?

我的系统是: - Apache2 - Ubuntu 16.04

1 个答案:

答案 0 :(得分:0)

有时默认apache安装没有启用模式重写(正如你所描述的那样是你的vpn)

所以你需要手动启用重写模块 将此2个命令用于enable rewrite modulerestart apache

a2enmod rewrite

service apache2 restart

然后只需检查您的目录是否有.htaccess,以便将所有请求重定向到index.php

apache server中你需要这些东西

<Directory /var/www/html/example.com/public_html>
    Options Indexes FollowSymLinks
    # this is needed to work .htaccess
    AllowOverride All
    Require all granted
</Directory>