en uygun ayar diye bişey yok hocam, kimi site arada bir yaş doğrulama ister cookie kontrolü yapar, kimi site referer kontrolü yapar kimisi browser kontrolü yapar. her site için kullanman gereken özellikler değişebilir. senden site adresini istememin sebebi bu. ama illaki istiyosan kullandığım fonksiyonları vereyim.

bu genel olarak kullandığım fonksiyon;
function vericek($url) {
	$ch = curl_init();
	curl_setopt($ch,CURLOPT_URL,$url);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
	curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,10);
	curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
	$data = curl_exec($ch);
	curl_close($ch);
	return $data;
}
bu da yaş doğrulaması isteyip cookie kontrolü yapan sitelerde kullandığım fonksiyon;
function vericek2($url,$url2,$cookie,$postfields) {
	$ch = curl_init();
	curl_setopt($ch,CURLOPT_URL,$url2);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
	curl_setopt($ch,CURLOPT_POST,1);
	curl_setopt($ch,CURLOPT_POSTFIELDS,$postfields);
	curl_setopt($ch,CURLOPT_COOKIEJAR,$cookie);
	curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,10);
	curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
	$data = curl_exec($ch);
	curl_setopt($ch,CURLOPT_URL,$url);
	curl_setopt($ch,CURLOPT_COOKIEFILE,$cookie);
	$data = curl_exec($ch);
	curl_close($ch);
	return $data;
}