Currently I am facing the following problem:

A website, which I have to make for a company, has different locations. But the content of a few pages is for all locations the same. Now I have created a global folder with the items for all the locations. But now I am facing the following problem: when accessing the global items from the website of a specific location I get the global url. But what I want is that the specific location url remains the same structure, for example:

  • Now it is www.url.com/global/subfolder/itemname
  • And what I want is www.url.com/location1/subfolder/itemname

Does anybody have any solution(s)/suggestion(s) for this problem?

Does anybody also have a solution for creating a menu to insert these global items but also to insert the location specific items?

Some more information about my Sitecore content structure

  • Global: contains the global items for alle locations
  • Corporate: the corporate website of the company
  • Location1: the website of location1
  • Location2: the website of location2
link|improve this question

When you say 'different locations' do you mean different domains? or maybe different subfolders? Can you give examples. – Paul George Sep 29 '11 at 11:29
feedback

2 Answers

up vote 1 down vote accepted

Adam Weber was right, cloning is your best solution:

  1. Create your Global section, with all the child items you need
  2. For each of your local sections, clone the global section and place it where you'd like it to appear within your local menu
link|improve this answer
feedback

If I understand you correctly, this is what I'd do. It might not be the prettiest solution. But it'll work.

You have your "data" items in /global/subfolder/itemname

then just create some templates, which are "dummy" pages, that only contain a link to the global item (and perhaps the few fields that could differ (perhaps contact email for the specifik location).

Then you make a sublayout that bascially jsut gets the referenced item and uses that instead of Sitecore.Context.Item.

Then create an instance of the "dummy" template in /location1/subfolder/itemname and reference it to /global/subfolder/itemname

That way you URLs will be correct and the data will be the same.

Another and probably smarter solution (if you have enabled proxies) is to create a proxy that takes /global/subfolder/itemname as source and points to /location1/subfolder/ as target (or you could take /global/subfolder and check "include children".

Here is a Guide on how to use proxies in 5.3: http://sdn.sitecore.net/Articles/Administration/Using%20Proxy%20Items%20in%205,-d-,3.aspx

link|improve this answer
I'd go with proxy items. There were quite a few issues with proxies in v5.x, but in v6 they work much better – adam Sep 30 '11 at 8:25
Yeah that is probably the simples solution and doesn't require any coding, only a few changes to the web.config. – Holger Sep 30 '11 at 10:38
2  
Proxies can be a pain and don't scale well. I would recommend looking into item clones instead if you're running 6.4 or later. – Adam Weber Sep 30 '11 at 13:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.