I set up an ExpressionEngine site that is working fine, and then installed the Multiple Site Manager module. I duplicated the original site and set it up on a subdomain. The homepage shows up fine, but none of the other pages will show up properly. The URL changes, but they all just use the homepage template. All of my templates are there, and I don’t see any reason why they shouldn’t work. I also did some extensive research on the forums, user guide and google without much luck.
Here’s the live site: http://www.brijot.com
Here’s the staging site I set up (site #2, duplicate of live site): http://staging.brijot.com
Below is a sample of my company template (company/index)
{embed="home/header"}
{sub_navigation}
<div class="content">
<div class="wrapper">
{!--landing page--}
{if segment_2 == ""}
{exp:channel:entries channel="pages" status="open|exclude" category="34" limit="1"}
<div class="left">
<h1>{title}</h1>
{pages_copy}
{/exp:channel:entries}
</div><!--left-->
<div class="right">
{contact_sfdc_company}
</div><!--right-->
{/exp:channel:entries}
{!--sub-pages--}
{if:else}
{exp:channel:entries channel="company" status="open|exclude"}
<div class="left">
<h1>{title}</h1>
{company_body}
{/exp:channel:entries}
{if segment_2 == "contact"}{contact_sfdc_company}{/if}
{if segment_2 == "support"}{contact_support}{/if}
{if segment_2 == "site-map"}{site-map}{/if}
</div><!--left-->
<div class="right">
{exp:channel:entries channel="company" status="open|exclude"}
{if segment_2 == "leadership" OR segment_2 == "board-of-directors" OR segment_2 == "careers" OR segment_2 == "contact" OR segment_2 == "support"}
{company_right}
{if:elseif segment_2 == "partners"}
{company_right}
{contact_sfdc_partners}
{if:else}
{company_right}
{contact_sfdc_company}
{/if}
{/exp:channel:entries}
</div><!--right-->
<div class="clear"></div>
</div><!--wrapper-->
</div><!--content-->
{embed="home/footer"}What am I doing wrong? Do the url segments change for subdomains?