Answers for "php change headers"

PHP
5

header location php

<?php
// This will just redirect you to example.com
$url = "https://example.com";
header("Location: $url");  
?>
Posted by: Guest on March-13-2020
1

header location php

<?php
// Redirect to mywebsite.com
header("location:https://mywebsite.com");  
?>
Posted by: Guest on May-04-2021

Browse Popular Code Answers by Language