Reputation: 1
I got this error when choose data from dropdown list. Below is my .htaccess file I have go through my codes but did not find what's wrong. Can anyone help me how to debug in php? I am using Wamp server.
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
<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/.+|\.git.+) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [L]
</IfModule>
Options -Indexes
Upvotes: 0
Views: 36