0

このコードでは、リダイレクト $searchLink を提供しています

$urlCity = strtolower($_COOKIE['UserCityName']);
 $searchLink = '/properties-in-'.$urlCity.'.php'; 
 if($_SERVER['REQUEST_URI'] != $searchLink)
 {
    Header("HTTP/1.1 301 Moved Permanently" );
    Header("Location: http://".$_SERVER['HTTP_HOST'].$searchLink);   
 }

しかし、GSiteCrawler Server-Test では、エラーが表示されます

'http://legacy.com/properties-in-.php' 
Result code: 200 (OK / OK)

'http://legacy.com/properties-in-chennai.php'  like this it should come

どうすればこれを修正できますか

4

0 に答える 0