<div dir="ltr">Wow! What a silly mistake on my part.  Thank you so much for the insight Andy.  That worked perfectly.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2015-08-18 18:47 GMT-05:00 Andrew Beverley <span dir="ltr"><<a href="mailto:andy@andybev.com" target="_blank">andy@andybev.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Tue, 2015-08-18 at 16:21 -0500, Richard Reina wrote:<br>
> I am trying to learn dancer and have run across the following problem. In<br>
> my starter app after a user logs in I want to send them to a welcome page.<br>
> For now I am just trying to send them back to the index page. However, I am<br>
> having problems doing so with the following syntax.<br>
><br>
> I get:<br>
> Error 404 - Not Found<br>
> /index<br>
<br>
</span>That means that you do not have a route that will handle /index, hence the 404.<br>
<span class=""><br>
> Am I going about this the wrong way or is redirect the way to go and if so<br>
> what would be the proper syntax to make redirect work?<br>
><br>
><br>
</span>>           redirect '/index';<br>
<br>
Yep, that's correct in terms of the redirect. If you want to go to the "index" of<br>
your site (i.e. the root), then you probably want:<br>
<br>
    redirect '/';<br>
<br>
Regards,<br>
<br>
Andy<br>
<br>
<br>
_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" rel="noreferrer" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
</blockquote></div><br></div>