When I try to access my wordpress feed url like www.wordpresssite.com/feed/rss then firefox throws the error "Page is not redirecting properly". And other browsers also don't open this url. this is my htaccess code
# BEGIN Wordpress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END Wordpress
Please help