Comment 1 for bug 604569

Revision history for this message
modi.konark (modi-konark) wrote :

The website folder contains a file called url.py which is used to link the pages with URLs.
The pages are matched using regex pattern. Now to solve the problem we need to modify the regex patterns a bit.

They should be of the type:
Syntax:
('^page_name|^page_name/$',Page_Name)

Where:
Page_Name is the page we need to get displayed
page_name is the pattern. I have specified two patterns page_name and page_name

Example:
('^about|^about/$',About)

The first pattern will link to beeseek.org/about and second to beeseek.org/about/.

Hence solving our problem