Answers for "php redirect with query string"

PHP
0

php redirect with query string

<?php
    header("Status: 301 Moved Permanently");
    header("Location:./content/index.html?". $_SERVER['QUERY_STRING']);
    exit;
?>
Posted by: Guest on June-10-2021

Browse Popular Code Answers by Language