advanced code snippet search
gbot on 03/09/08
redirect headers
03/09/08 09:33am
3 people have marked this snippet as a favorite
gbotNixvali29
function redirect($url,$permanent = false){ if($permanent) { header('HTTP/1.1 301 Moved Permanently'); } header('Location: '.$url); exit();}
Report this snippet Tweet
Comment:
You need to login to post a comment.