Multisite Image path problem
-
Hi
After updating to wordpress 3.5 all images on the multisites are broken.
All images on the main site are working fine.The error occurs when for example this image is requested:
https://www.aadum.com/aadum-iogu/files/2011/01/overnatningsstaevne-1-150×150.jpg
I’ve checked the htaccess action, and it leads to this source:
https://www.aadum.com/wp-includes/ms-files.php?file=2011/01/overnatningsstaevne-1-150×150.jpgBut the image is located at this path on the server:
https://www.aadum.com/wp-content/blogs.dir/2/files/2011/01/overnatningsstaevne-1-150×150.jpgMy htacess file looks like this:
# BEGIN WordPress RewriteEngine On RewriteBase / 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).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPress
I have read and tried so many other threads without luck. Im really hoping someone is able to help me out!
/Marco
- The topic ‘Multisite Image path problem’ is closed to new replies.