atm web siteme başka bir sayfaya kullanıcıyı yönlendirmek için aşağıdaki dört satırlık kullanıyorum:
<?php
header("Status: 301 Moved Permanently");
header("Location: ./content/index.html");
exit;
?>
but there is a problem with the use of HTTP query string variables like http://< url >?param=blah
they don't get appended to url understandably.
Bu uygulama için akıllı bir hareket var mı?
selamlar