我尝试用Chevereto
在Ubuntu 16.04 LTS
上安装Apache 2.4.7
免费版。我在安装过程中自动重定向到文件夹/install
,这不存在。 /app/install/installer.php
给出错误信息:
无法直接访问此文件。
Apache mod_rewrite
已启用。 /install
应该由index.php
文件处理。
必须在/etc/apache2/apache2.conf
文件中允许覆盖。
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>