Hi

I need to redirect the old url http://www.domain.co.uk to http://www.domain.co.uk/home/

I have tried 301 redirect and placing it in the htaccess file but it messes up the site and says about not redirecting properly

How would I integrate it into the htaccess generated by gen_htaccess in couchcms admin panel

Thank you in advance

UPDATE: I have sorted it, I found a post who had a similar issue and KK posted the solution, I added the following code to my index.php file and redirects perfect

viewtopic.php?f=4&t=11552&p=30852&hilit=index.php+redirect#p30852

Code: Select all
<cms:if k_is_home >
    <cms:redirect "<cms:link masterpage='index.php' page='home' />" />
</cms:if>