Issue Details (XML | Word | Printable)

Key: BCMS-111
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Gregory Chomatas
Reporter: Gregory Chomatas
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
BetaCMS

Add to Default URL Rewrite rules that implemet the Portal API some rules that handle the default navigation to Home Page

Created: 07/Nov/09 06:29 PM   Updated: 07/Nov/09 06:37 PM  Due: 06/Nov/09
Component/s: betacms-portal-commons
Affects Version/s: 2.1.0.CR1
Fix Version/s: 2.1.0.CR2

Time Tracking:
Not Specified


 Description  « Hide
Default rules for navigation to Home Page.
The following rules redirect the /, /index.html and /home URLs to the 'home' portal section.
Therefore, for these rules to work, the Home Page should always correspond to a Portal Section that has a 'systemName' equal to 'home'.
 
<rule>
<from>^/$</from>
<to last="true">/showPortalSectionResourceBySystemName.jsf?contentObjectSystemName=home</to>
</rule>
  
   <rule>
<from>^/index.html$</from>
<to last="true">/showPortalSectionResourceBySystemName.jsf?contentObjectSystemName=home</to>
</rule>

<rule>
<from>^/home$</from>
<to last="true">/showPortalSectionResourceBySystemName.jsf?contentObjectSystemName=home</to>
</rule>



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Gregory Chomatas added a comment - 07/Nov/09 06:37 PM
DONE