I have .htacces like:
RewriteEngine On
RewriteRule ^en/$ index.php?page=index&lang_id=2
RewriteRule ^contact.html$ index.php?page=contact
RewriteRule ^en/contact.html$ index.php?page=contact&lang_id=2
# ...[and so on]
In my site i have a switch language button(image). My basic language is in Ro and and i want to swtich it into En. So, the point is that on a real server, the switcher works. On my local server, wamp, when I try to switch the language, in my browser it appears the text translated (as they are stocked in my database), but it doesn't recognized the css styles, images,...it appears only the text.
Where is the problem ? Please help me.