BuddyPress on a Sub Directory Installed WP 2.9.1
-
I installed wordpress in a /wordpress sub-directory way back when. My .htaccess file is in the web root:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
and it points to index.php in the same web root. Inside that index.php is:
/** Loads the WordPress Environment and Template */
require(‘./wordpress/wp-blog-header.php’);
So it has always worked up until I installed BP 1.2-rc.
BP works ok but the links at the top pointed to http://domain.com/wordpress/activity instead of http://domain.com/activity, etc.
I hard coded those to work but all the social links (permalinks, profiles, groups, etc) all use the wordpress slug.
Is there a way to rewrite site_url() to remove the wordpress slug or some other way?
Thanks!
- The topic ‘BuddyPress on a Sub Directory Installed WP 2.9.1’ is closed to new replies.