RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /news/index.php [L]
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L]
) When you click to read the full story of a spcefic news you get direted to domain.com/news/2/0/test-news.html - the news is embedded to the design of the site, however all images files (Headers, menu images etc) are missing. The image files are linked to domain.com/news/2/0/header.jpg domain.com/news/2/0/arrow.gif etc. instead of the original images which are located on domain.com/arrow.gif domain.com/header.gif domain.com/images/back_butoon.gif an so forworth.
.testheader {
background-image: url('images/test.png');
}
.testheader {
background-image: url('./images/test.png');
}
.testheader {
background-image: url('http://domain.com/images/test.png');
}
) When i click to read the full story and comes to domain.com/new/3/0/testnews.html , the rest of the text on my site (Text in the menu and so on) is changing font and size - why is that? Is there any easy way to fix this? 