Thursday 15 October 2009 7:40:25 am
Sorry, I've resolved everything and now the redirecting works properly. However, I have yet another question:is there a way to set multiple websites with a single ezpublish installation so that the siteaccess to be loaded is determined in part on the basis of the domain and in part on the basis of what comes on the rest of the path (the first "folder")?
E.g. suppose I have:
www.mysite.com, with its siteaccesses mysite_eng and mysite_ita www.myothersite.com, with its siteaccesses myothersite_eng and myothersite_ita
I would like to obtain the following:
www.mysite.com --> siteaccess mysite_eng
www.mysite.com/ita --> siteaccess mysite_ita
www.myothersite.com --> siteaccess myothersite_eng www.myothersite.com/ita --> siteaccess myothersite_ita How can I do, provided that the following doesn't work?
HostMatchMapItems[]
HostMatchMapItems[]=www.mysite.com;mysite_eng
HostMatchMapItems[]=www.mysite.com/ita;mysite_ita
HostMatchMapItems[]=www.myothersite.com;myothersite_eng
HostMatchMapItems[]=www.myothersite.com/ita;myothersite_ita
|