Monday 27 October 2008 4:44:22 am
Hi. This is maybe a following to http://ez.no/developer/forum/setup_design/one_subdomain_per_each_user_blog I'll try to explain. We have a content tree like
Root
-- News
-- Contact
-- Company
-- Forum
-- Blogs
We want a subdomain for the "blogs" section. something like blogs.domain.com So, i have added some lines to my site.ini file
HostMatchMapItems[]=blogs.domain;blogs
and i've created a siteaccess called also blogs. In this new siteaccess i've added override.ini.append.php file and site.ini.append.php with
IndexPage=/content/view/full/5681
All is perfect but my doubts begins now. we have a main menu template. is a list of the folders under the content tree. usign ezurl operator we get urls like http://www.domain.com/news, http://www.domain.com/company and so on. But when i go to blogs.domain.com, ezurl operator converts those urls to http://blogs.domain.com/company for example, and this is not what we want. so, is there any way to keep those urls like http://www.domain.com/company and only the urls of the nodes in "blog tree" displaying urls like http://blogs.domain.com/whatever...
|