Hello all!
Here is my problem:
I have 4 sites on the same server, it's a low budget hosting with a "/~username" root. The 4 sites all have sitename.com links.
3 sites are running 4.6.9 and are all working flawlessly with clean urls. 1 site is using 4.7.3 and the clean urls are half-working, the problem is that as long as I only go 1 directory down it's OK, but if I go two or more down all paths to images stops working.
So example:
mysite.com/games works
mysite.com/games/comment does not work
I have changed the RewriteBase to all different combinations I can think of, the changes do take effect because if I set it to "/" I end up at my main site(the public_html, the 3 other sites are in subdirs there). I can also uncomment and the site will work at the first level.
The base in config is set to mysite.com as it should be.
My images are linked "images/site/image.jpg" for example, if I add a "../" making it "../images/site/image.jpg" the images will work two levels down, but not three levels down. So if I add "../../" then they will work three levels down and so forth. Clearly there is something fishy with how it finds the path backwards.
If I turn off clean urls the site works as it should with all the images.
My two solutions are:
1. Do not use clean urls
2. Give exakt paths to all images and links.
But I would really like to have a third option with working links/images and clean urls!