The homepage for my site will not display UNLESS I add /index.php to the URL
http://www.results.org - displays error message
http://www.results.org/index.php - displays the homepage
This is the case even after I delete the .htaccess file
Here is my .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php from ExpressionEngine URLs
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
redirect 301 /donate http://www.results.org/support_results/support_results/
redirect 301 /take_action/become_a_results_activist/find_a_community_results_group http://www.results.org/site/find_a_community_results_group/
</IfModule>