Hi everyone!
I have a broken menu link: Community -> Blogs (ex: http://therabbitway.com/network/blogs/ )
The server response is this:
Forbidden
You do not have permission to access this document.
Web Server at therabbitway.com
My /network/.htaccess file contents are:
RewriteEngine On
RewriteBase /network/
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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
The /network/blogs folder has 775 permissions. So does the folder blogs.dir.
I can view my users individual blogs… but the link to see them all throws an exception.
Can you help solve this one?
Thank you!