Multisite & Pretty permalinks
-
Hello, I have been scouring the forums trying to correct an issue I have with a Multisite installation with no success yet.
Here is my site… https://www.gloconj.com
I have installed WordPress 3.4.2 & enabled multisite with subfolders.
Created posts (default permalinks)
Installed Buddyress
And created ForumsThe problem is that all three won’t work together…
My posts only work with the default permalink structure.
Buddypress requires custom permalink structures.To fix this I used custom permalinks and a plugin called “advanced permalinks” to correct my posts so that they work with custom permalinks.
Then I activated the forums… They did not work until I deactivate the “advanced permalinks” plugin, causing the posts to no longer work.
I have tried deactivating all plugins at the request of some searches I have done and it still did not work.
Is there a way to get custom permalinks to work with my posts? They are the only thing broken at this point.
Static pages work fine.
Subsites work fine.here is my .htaccess code & Wp-config.php. Any help would be greatly appreciated!
Thanks,
SharonRewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L]
/* Multisite */ define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); $base = '/'; define('DOMAIN_CURRENT_SITE', 'www.gloconj.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
- The topic ‘Multisite & Pretty permalinks’ is closed to new replies.