我正在安装fuelcms我遵循指南中的说明,除了文件权限,因为我在Windows上使用xampp。
我在文件中正确更改了配置,但是当我使用此链接导航时,我重定向到了xampp索引页。
http://localhost/fuelcms/fuel
我不知道如何正确安装。
答案 0 :(得分:1)
我发现同样的问题并通过改变位于燃料文件夹根目录中的.htaccess来解决,就像它在安装页面中要求的那样。在你的情况下,你必须确保你的htaccess是这样的:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /fuelcms
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Allow asset folders through
RewriteRule ^(fuel/modules/(.+)?/assets/(.+)) - [L]
# Protect application and system files from being viewed
RewriteRule ^(fuel/install/.+|fuel/crons/.+|fuel/data_backup/.+|fuel/codeigniter/.+|fuel/modules/.+|fuel/application/.+) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [L]
# Prevents access to dot files (.git, .htaccess) - security.
RewriteCond %{SCRIPT_FILENAME} -d
RewriteCond %{SCRIPT_FILENAME} -f
RewriteRule "(^|/)\." - [F]
</IfModule>
Options -Indexes