I was having problems redirecting my web form to my thank you page after submitting, It appears the redirect only accepts php extensions:



This works:

Code:
<input id="redirect_url" name="redirect_url" value="http://www.yourdomain.com/thankyou.php" type="hidden">

This does not

Code:
<input id="redirect_url" name="redirect_url" value="http://www.yourdomain.com/thankyou.html" type="hidden">
Rather than editing the sugar files to accept html docs on redirect I just made a quick PHP file that opened my existing html file:

PHP Code:
<?php
include("thankyou.html");
?>
As long as your server accepts PHP this should work just fine


Hope this helps others with the same issue.


Marcus