Any help or ideas would be much appreciated
I ran into this error a few months ago, and just blew it off, avoiding what I wanted to originally do. But now, it's just a complete nuisance to me. Anytime I want to redirect my site's main index page (which is WP) to another WP page within my site, Firefox would tell me "Firefox has detected that the server is redirecting the request for this address in a way that will never complete." Cleared cache, cookies, everything recommended.
For redirecting, I use cPanel's Redirects, and as far as I can tell, it adds...
RewriteCond %{HTTP_HOST} ^example.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule ^.*$ "http\:\/\/example\.com\/Word\/\?page_id\=65" [R=301,L]
to my root htaccess file. Not completely sure what I was doing, I added an htaccess file into the directory the page being redirected to is located, /Word. In it, I added just one line, "ReWriteEngine off". This fixed my "Infinite Loop" bug, but now my site isn't displaying my current theme, or any other theme. The same for the wp-login page, it's not displaying any styles.
How am I going about this wrong? Any suggestions would be much, much appreciated.