Answers for "php redirect after query"

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

Code answers related to "php redirect after query"

Browse Popular Code Answers by Language