关于电子邮件表单重定向

时间:2013-03-08 10:01:24

标签: php forms

我abc在php不支持的网站上有一个emame表格作为假设(xyz.com),我在一个子域名(123.com)托管了一个php文件来查看我的网站作为假设(abc.123。 com)。,它的工作正常,但我如何从(abc.123.com)的php文件重定向到xyz.com上的你的页面?

任何解决方案? ,在此先感谢并等待回复。

更具体

在我的表格中,我将网址包含在

urlWebsite = "abc.xyz.com"

并在php文件中包含标题位置

Header('Location:'. $_POST['urlWebsite'].'/p/thank-you.html')

任何想法?

1 个答案:

答案 0 :(得分:2)

您也需要传递该方案,httphttps

header('Location: http://'. $_POST['urlWebsite'].'/p/thank-you.html');
die;