我寫信去給Xuite客服,
他們回應很快,但是沒辦法解決。
也就是說手機"必須"前往手機版網頁。
但是我實在不喜歡又小又暗的畫面,
一開啟畫面,就是Xuite電腦版該有多好?
上網看了相關的資料,
那麼從User-Agent著手吧。
我採用Php + Curl的方法,
有興趣的朋友可以參考看看。
<?php
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, 'http://blog.xuite.net/isakira/blog/');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
// grab URL and pass it to the browser
$html = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
echo $html;
?>
從此之後,就可以用手機打開Xuite電腦版了。
http://xuite.isakira.com
留言列表