﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
12332	Path rewrites on Multisite with subdirectories (htaccess)	automaton	janeforshort	"I'm trying to create a Network on www.example.com/wp3/ with sub-sites as www.example.com/wp3/ouders and www.example.com/wp3/leraren.
Apparently, the theme paths and Dashboard (wp-admin) are not redirected properly. When I visit www.example.com/wp3/ouders, I get the site's content, but images and css are unreachable. Idem for www.example.com/wp3/ouders/wp-admin.
This is the contents of .htaccess:
{{{
RewriteEngine On
RewriteBase /wp3/

#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.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-(content|admin|includes).*) $2 [L]
RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
}}}
"	defect (bug)	closed	normal	3.0	Rewrite Rules	3.0	normal	fixed	multisite, htaccess, rewrite, theme, subdirectory	
