Images /wp-content/blogs.dir/[id]/files/image.jpg not displaying
-
On mapped domains most images display the src attribute with https://domain.com/wp-content/blogs.dir/3/files/2012/03/image.jpg – 404 error (for whatever reason these images are now not showing up.)
However, if I change the URL to:
https://domain.com/files/2012/03/image.jpg
The image will appear. Is this something recent in 3.4.2? Am I going to have to go through and fix all these img src attributes?I double checked the .htaccess, below is the standard WP .htaccess I have. Note, excluded is mod_expires block of code.
Any help would be appreciated.
————–
# 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
————–
- The topic ‘Images /wp-content/blogs.dir/[id]/files/image.jpg not displaying’ is closed to new replies.