It looks like you're new here. If you want to get involved, click one of these buttons!
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdir/
<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
Help me
Comments
Try removing "Options +FollowSymLinks" and "Options -Indexes"
Warning: include_once(/web/htdocs/www.mysite.org/home/subdir/fuel/application/../modules/fuel/config/fuel_constants.php): failed to open stream: No such file or directory in /web/htdocs/www.mysite.org/home/subdir/fuel/application/config/constants.php on line 39