[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
Hi
A few days ago I noticed at all my clients multisite subsites with their own domains have broken image links.
I noticed the earlier thread on this forum mentioning turning on the AllowOverride to ALL. I contacted the host about this and he came back saying that "AllowOverride is configured correctly from what I can see, and the .htaccess file is being read by Apache. I am thinking that there might be an error in the .htaccess file."
I have checked the media library and front end of each of the subsites and they all contain lots of broken links.
Old link structure that used to work in the multisite just a few days ago:
http://vannsymposium.no/files/2011/12/vannkran.jpg
New link structure:
http://baldron.org/wp-content/blogs.dir/4/files/2012/06/valmues%C3%B8ster.jpg
The .htaccess file contains this info:
RewriteEngine on
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName flowfond.org
AuthUserFile /home/flowfond/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/flowfond/public_html/_vti_pvt/service.grp
# something...
RewriteCond %{HTTP_HOST} ^elbeskyttelse.no$ [OR]
RewriteCond %{HTTP_HOST} ^www.elbeskyttelse.no$
RewriteRule ^(.*)$ "http\:\/\/www\.baldron\.com" [R=301,L]
RewriteCond %{HTTP_HOST} ^xn--el-flsom-84a.no$ [OR]
RewriteCond %{HTTP_HOST} ^www.xn--el-flsom-84a.no$
RewriteRule ^(.*)$ "http\:\/\/www\.baldron\.com" [R=301,L]
RewriteCond %{HTTP_HOST} ^xn--elflsom-s1a.no$ [OR]
RewriteCond %{HTTP_HOST} ^www.xn--elflsom-s1a.no$
RewriteRule ^(.*)$ "http\:\/\/www\.baldron\.com" [R=301,L]
RewriteCond %{HTTP_HOST} ^beedynamic.no$ [OR]
RewriteCond %{HTTP_HOST} ^www.beedynamic.no$
RewriteRule ^(.*)$ "http\:\/\/www\.baldron\.com" [R=301,L]
RewriteCond %{HTTP_HOST} ^quickzap.no$ [OR]
RewriteCond %{HTTP_HOST} ^www.quickzap.no$
RewriteRule ^.*$ "http\:\/\/www\.baldron\.com" [R=302,L]
# Typo3 mod_rewrite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^typo3$ typo3/index_re.php
RewriteRule ^[^/]*\.html$ index.php
RewriteCond %{HTTP_HOST} ^baldron\.no$ [OR]
RewriteCond %{HTTP_HOST} ^www\.baldron\.no$
RewriteRule ^/?$ "http\:\/\/www\.helseforhandleren\.no" [R=301,L]
(more of the same as the 3 above lines continue in the htaccess file.)
Anyone have any advice on how to proceed?
Thanks!