thedm
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Images are broken links after a site move (same domain)This new .htaccess solved my problem!
Marc, you’re god-sent. thank you very much, I appreciate it.Forum: Networking WordPress
In reply to: Images are broken links after a site move (same domain)I suspect it’s the same issue as:
https://wordpress.org/support/topic/multisite-blogs-images-not-showingI’m asking my admin to change my HTTPD.conf.
Will update.Forum: Networking WordPress
In reply to: Images are broken links after a site move (same domain)Just checked it. No change in the images but it causes a Redirect Loop when trying to access the Admin Panel.
Forum: Networking WordPress
In reply to: Images are broken links after a site move (same domain)Yep.
Forum: Networking WordPress
In reply to: Images are broken links after a site move (same domain)Hi Marc,
1. File premissions are 644 (seems OK), I’ve also tried to set it to 777 but it changed nothing.
2. if I access the images directly I get a page 404 error.
3. No Jetpack installed and .htaccess is:
# 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 WordPressI’ve also tried reverting to an older .htaccess file with no success.
thanks for the quick reply.