I'm using this cond to redirect my forum.domain.com subdomain to domain.com/forum folder:
Code: [Select]
Everything works fine, except for Aeva links.. for example I have this image:
Code: [Select]
Instead of:
Code: [Select]
it gets redirected to:
Code: [Select]
So I get a 404 error.. seems like a char-set problem!
RewriteCond %{HTTP_HOST} ^[www\.]*forum.domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]Everything works fine, except for Aeva links.. for example I have this image:
http://forum.domain.com/index.php?action=media;sa=media;in=252;thumbInstead of:
http://domain.com/forum/index.php?action=media;sa=media;in=252;thumbit gets redirected to:
http://domain.com/forum/index.php?action=media%3bsa=media%3bin=252%3bthumbSo I get a 404 error.. seems like a char-set problem!






