...?url=" ... " In meta tag

larskarbo93

New Member
Messages
4
Reaction score
0
Points
0
Hello,

Is there a way to let this work?:

URL: mysite.com/redirect.html?redi=user.html

<meta http-equiv="refresh" content="0; URL=mysite.com/members/ + redi in the link">

If this had worked the user had been redirected to mysite.com/members/user.html

How can I get this to work?
 
Last edited:

diabolo

Community Advocate
Community Support
Messages
1,682
Reaction score
32
Points
48
using PHP.
PHP:
echo '<meta http-equiv="refresh" content="0; URL=mysite.com/members/'.$_GET['redi'].'">';
make sure to save it as a php file and the php tags <?php ?>
 
Last edited:
Top