You have a redirect loop.
This is probably due to a function in your theme or some other plugin.
To narrow down the issue, try switching to a standard WP theme like 2013.
Try deactivating plugins one at a time.
You also have an issue re profiles.
For example, your profile link is
http://www.jennifermfitness.com/profile/JennMFitness/
which is 404 (not found)
The ‘correct’ BP url is:
http://www.jennifermfitness.com/members/jennmfitness/
And that also causes a redirect loop.
I have already tried all of that but I did it again just now and the group is still not redirecting. Is there something else I can try? Or something I can change?
You can even check yourself now as all the plugins are deactivated except bp and the theme is set to 2013.
Then it may be your .htaccess file.
It should look like this:
# 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
Yep… has that exact code.
Then it’s probably something in your server setup.
I would ask your hosting provider for help with a redirect loop.
also – your links point to:
<a href="http://www.JenniferMFitness.com/groups/new-year-new-you/">New Year, New You</a>
Note the capitals in the href.
You might want to try changing them to lower case in wp-admin/options-general.php
in the WordPress Address (URL) and Site Address (URL) fields.
Ah! That was it! Geeze… why didn’t I think of that! Thank so much!!