启用mod_rewrite的Chevereto安装

问题描述 投票:0回答:1

我尝试用CheveretoUbuntu 16.04 LTS上安装Apache 2.4.7免费版。我在安装过程中自动重定向到文件夹/install,这不存在。 /app/install/installer.php给出错误信息:

无法直接访问此文件。

Apache mod_rewrite已启用。 /install应该由index.php文件处理。

php apache mod-rewrite
1个回答
0
投票

必须在/etc/apache2/apache2.conf文件中允许覆盖。

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.