I've to manage a apache web server 2.2 on a windows server.
On this server i've configured, correctly, several sites through virtual host.
I'm not expter about this, but I used correctly virtual host for this issue.
I've a problem now with a joomla 2.5 site that has multilanguage feature.
This is virtual host
Code: Select all
<VirtualHost xx.xxx.xxx.xxx:80>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "...path../site"
DirectoryIndex index.php
ServerName www.site.it
ErrorLog "logs/site-error.log"
CustomLog "logs/site-access.log" common
</VirtualHost>
If i put index.php of my site with multilanguage it automatically adds in the browser /it for italian language, so my site became
from
http://www.site.it
to
http://www.site.it/it
and so it doesn't work, cause in my site folder there isn't it folder, it's added by joomla for italian language, but it's not a physical folder in the system.
I hope to be clear, could you help me?
Thanks