What does your .htaccess file look like? It seems to want to try and re-write URL’s to /members/index.php when it should be rewriting to /index.php.
The links should still work even if there is no actual physical page in that location, as the URLs are rewritten by Apache.
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ /$1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
I just installed buddypress on MCAs.in from trunk. Its a fresh wpmu and buddypress install and i’m facing the same problem.
When you go to MCAs.in , under members tab if you click on the member it takes you to http://mcas.in/members/annkur/ which is redirected to homepage
It should actually take you to annkur.mcas.in
Whats the solution?