n the wordpress multisite 3.4.2 version with subdomains you must have .htaccess
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress
and on 3.5 version
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [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]
Multisite
Multisite installs now work with WordPress in a subdirectory
Turn off ms-files.php by default
File quotas disabled by default on new installs
so is there a big difference on the way that it work the multisite 3.5 from multisite 3.4.2? Does it worth transfering my multisite 3.4.2 to a new multisite 3.5 so it will work with the new operating function? If so, what steps do I have to follow to do it right?(I have reseller account)