I’m just building my search results page and my search results are coming through fine but the hyperlinks done work. I must be missing something but not sure what. This is my current results code
Searching for: <b>{exp:search:keywords}</b> found {exp:search:total_results} results.
{exp:search:search_results}
<dl>
<dt><a href="http://{auto_path}">{title}</a></dt>
<dd>{excerpt}</dd>
</dl>
{/exp:search:search_results}
{if paginate}
<div class='paginate'>
<span class='pagecount'>{page_count}</span> {paginate}
</div>
{/if}But the links I get aren’t working, the hyperlinks are simply my domain name followed by the channel url eg. http://www.somedomain.com/index.php/financial_calendar which doesnt work, the correct url should be http://www.somedomain.com/index.php/investor_centre/shareholder_information/financial_calendar/
What am I missing?