please help i can not get fuel to install
I just downloaded fuel, follow the installation step but my fuel dont load more the the first welcome page once i add /fuel to access the admin it takes me back to my localhost/index page. please what am i missing out. used codeigniter pretty well
Comments
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
Order Deny,Allow
Deny From All
# 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]
Options -Indexes
1. Try one of the following:
RewriteRule .* index.php?/$0 [L]
OR without the "?"
RewriteRule .* index.php/$0 [L]
2. If FUEL is in a subfolder on your webserver, change the RewriteBase to include that folder:
RewriteBase /myfolder/