Hello Everyone,
I am having the similar problem,
I have a multisite network with 2 subdomains.
https://blog1.com
https://blog2.com
There are 2 blogs in which I have duplicate post functionality,
i.e : When I have added any post in https://blog1.com then it will be
automatically created at the https://blog2.com with all the content.
It was working well with WordPress version 3.4 but As soon as I have updated the wordpress to 4.1 m getting the issue of not showing https://blog1.com images in https://blog2.com media library. Earlier it was working.
My .htaccess code is
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).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
https://blog1.com/wp-content/blogs.dir/2/files/2015/02/rsz_1insectone.jpg [ Working ]
https://blog1.com/files/2015/02/rsz_1insectone.jpg [ Working ]
https://blog1.com/wp-includes/ms-files.php?file=rsz_1insectone.jpg [ Not Working ]
Please help…It was over 1 week m stuck in this issue.