Awesome module Freeform is! Thanks tons!
When using the return parameter I get a malformed URL. If I use:
return="forms/success" I get “http://www.site.com/index/forms/success” which takes the user to the index page rather than the success page. Somehow that index is making it in the url.
If I use return="{site_url}forms/success" I get
http://www.site.com/forms/success
with the forward slash between the forms and success replaced with the special character “and pound 47 simicolon”.
I am using a rewrite code to get rid of the index.php in my urls:
RewriteEngine On
RewriteCond $1 !^(images|eeadmin|themes|favicon\.ico|robots\.txt|index\.php)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
This is referenced in this post at Expression Engine but the fix was way before my version (2.6.5 with EE 1.6.3 build 20080319. I am thinking that it may be my rewrite code interfering as more people would have reported it.
Any ideas?
