我知道这真的令人困惑。让我解释一下:
我想打开我的网站(http://domain.com)上的网址(http://domain.com/url='the submit url'),然后打开提交的网址。
例如:当我们从Google+打开任何其他网站链接时,请举例
http://www.youtube.com/watch?v=WRpX7tkwejU
重定向到
然后打开原始网站。我想要一些类似的东西。
答案 0 :(得分:3)
/redirect.php?url=http%3A%2F%2Fexample.com
。请务必urlencode
原始域名。在redirect.php
中,重定向用户:
header('Location: ' . $_GET['url']);