Tag pages not working in multisite
-
I’m having an issue that I assume is with the .htaccess on my multisite install. Trying to access any tag page gets me a page not found. Category pages appear just fine. To see the problem, you can go to pathstoknowledge.com and hit any term in the tag cloud in the sidebar. I have no special permalink set up for tags, but take the default. I’m assuming it’s an issue with multisite and .htaccess, but don’t know for sure.
My current .htaccess looks like this:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) wp/$1 [L]
RewriteRule ^(.*\.php)$ wp/$1 [L]
RewriteRule . index.php [L]Any suggestions? Thanks for any help.
- The topic ‘Tag pages not working in multisite’ is closed to new replies.