freed102 Arayashiki | Alors voila ce que j'ai fait :
Code :
- $googlebot=strpos($_SERVER["HTTP_USER_AGENT"],"Googlebot" );
- $msnbot=strpos($_SERVER["HTTP_USER_AGENT"],"msnbot" );
- $Yahoo=strpos($_SERVER["HTTP_USER_AGENT"],"Yahoo" );
- $VoilaBot=strpos($_SERVER["HTTP_USER_AGENT"],"VoilaBot" );
- $ZyBorg=strpos($_SERVER["HTTP_USER_AGENT"],"ZyBorg" );
- $WebCrawler=strpos($_SERVER["HTTP_USER_AGENT"],"WebCrawler" );
- $DeepIndex=strpos($_SERVER["HTTP_USER_AGENT"],"DeepIndex" );
- $Teoma=strpos($_SERVER["HTTP_USER_AGENT"],"Teoma" );
- $appie=strpos($_SERVER["HTTP_USER_AGENT"],"appie" );
- $Gigabot=strpos($_SERVER["HTTP_USER_AGENT"],"Gigabot" );
- $HenriLeRobotMirago=strpos($_SERVER["HTTP_USER_AGENT"],"HenriLeRobotMirago" );
- $psbot=strpos($_SERVER["HTTP_USER_AGENT"],"psbot" );
- $Szukacz=strpos($_SERVER["HTTP_USER_AGENT"],"Szukacz" );
- $Openbot=strpos($_SERVER["HTTP_USER_AGENT"],"Openbot" );
- $Naver=strpos($_SERVER["HTTP_USER_AGENT"],"Naver" );
- if($googlebot!==false && $msnbot!==false && $Yahoo!==false && $VoilaBot!==false && $ZyBorg!==false && $WebCrawler!==false && $DeepIndex!==false && $Teoma!==false && $appie!==false && $Gigabot!==false && $HenriLeRobotMirago!==false && $psbot!==false && $Szukacz!==false && $Openbot!==false && $Naver!==false)
- {
- //c'est un robot !
- }
- else
- {
- if (ereg("MSIE", $_SERVER["HTTP_USER_AGENT"]) || ereg("^Mozilla/", $_SERVER["HTTP_USER_AGENT"]) || ereg("^Opera/", $_SERVER["HTTP_USER_AGENT"])){
- $nextpage="intersticiel/index.php";
- if($_GET['index']!="on" )
- {
- if($_COOKIE['intersticiel']!="next" )
- {
- setcookie("intersticiel", "next", time()+86400);
- header('location:'.$nextpage);
- }
- }
- }
- }
|
j'ai également mis dans la page intermédiaire : les meta tags de la page d'accueil, et un lien caché dans le contenu alternatif du flash pointant vers la page d'accueil (et bien sur le même lien dans le flash pour fermer la page intermediaire... mais ça c t deja là !)
qu'en pensez vous ? |