我在子文件夹中安装了我的VPS中的OctoberCMS的新项目,例如/ var / www / myCMS /(这是我安装的OctoberCMS)。
当我通过域名示例访问我的网站时:www.mydomain.com/myCMS/我有一张欢迎演示的图片,图片底部:
但访问后端(www.mydomain.com/myCMS/backend)我有这个错误:
任何解决方案?
我的系统是: - Apache2 - Ubuntu 16.04
答案 0 :(得分:0)
有时默认apache
安装没有启用模式重写(正如你所描述的那样是你的vpn)
所以你需要手动启用重写模块
将此2个命令用于enable
rewrite module
和restart 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>