剛 才看到各大網(wǎng)站都在說Google的所有服務(wù)都被封了。邵連虎剛才用百度查了下谷。發(fā)現(xiàn)谷歌網(wǎng)站確實(shí)也打不開了。而且聽說最倒霉的應(yīng)該是我們這些 wordpress站長了。到底是什么原因呢,下面邵連虎就給大家詳細(xì)的介紹下。不過大家也不要擔(dān)心,畢竟什么都有解決的辦法,即使真的不行大不了再再做 個(gè)網(wǎng)站是了。,一切順其自然吧。
第一部分:谷歌服務(wù)器已由香港轉(zhuǎn)到美國
從5月27號左右開始,谷歌(Google)在華的幾乎所有的服務(wù)都處于無法使用的狀態(tài),谷歌官網(wǎng)域名Google.com、谷歌香港Google.com.hk所有服務(wù)都打不開。ping出來的IP均顯示為“美國”,也就是說谷歌香港的服務(wù)器,已經(jīng)由香港轉(zhuǎn)移至美國,所以鏈接實(shí)際會很長,甚至斷斷續(xù)續(xù)出現(xiàn)請求超時(shí)的情況。
第二部分:谷歌聯(lián)盟的站長們要倒霉了
而Google Adsense打不開,恐怕做谷歌聯(lián)盟的站長也要倒霉了。雖然在新聞上沒有搜索到任何相關(guān)內(nèi)容,但業(yè)內(nèi)流傳Google服務(wù)已經(jīng)在大陸被全線屏蔽,除搜索 引擎遭到屏蔽之外,谷歌的郵箱(Gmail)、日歷(Calendar)、翻譯(Translate)、地圖(Maps)、分析(Analytics)和 Google AdSense等產(chǎn)品也受到了影響。
第三部分:最倒霉的要數(shù)wordpress站長朋友了
看 到別人都做搏客了,邵連虎也做了一個(gè)搏客。用心經(jīng)營了半年多的時(shí)間,我的邵連虎搏客確實(shí)也經(jīng)歷了不少風(fēng)雨,從一些不溫不熱的網(wǎng)站慢慢地變的有人氣了。我也 慢慢的喜歡寫搏客了 。可是聽到這個(gè)消息我的心都快碎了。為什么我剛接觸SEO的時(shí)候,SEO就不好使了?,F(xiàn)在剛寫搏客不久谷歌的服務(wù)卻被封了。我想我是個(gè)倒霉的人,不過我也 相信一切都有解決的辦法。據(jù)說是wordpress的字體加載不出來,導(dǎo)致搏客打開速度緩慢,甚至打不開。
第四部分:下面給大家總結(jié)了幾種解決的辦法:
方法一:360網(wǎng)站衛(wèi)士的解決方案:
修改方法如下:
打開wordpress代碼中的文件wp-includes/script-loader.php文件,搜索:fonts.googleapis.com找到這行代碼:
$open_sans_font_url = “//fonts.googleapis.com/css?family1=Open+Sans:300italic,400italic,600italic,300,400,600&subset=$subsets”;
把fonts.googleapis.com替換為fonts.useso.com
修改完保存,再次刷新,大家就可以發(fā)現(xiàn),自己的網(wǎng)站速度已經(jīng)比以前快了很多,幾乎瞬間就可以拿到Google字體了。原因就是本來需要從美國服務(wù)器才能拿到的google字體,現(xiàn)在已經(jīng)遍布360全國的機(jī)房了。
方法二:functions過濾法:
主題中的functions.php文末尾?>之前加上以下代碼之一。經(jīng)小峰測試這種方法只對前臺有效后臺不變,因?yàn)閮H修改主題代碼。
代碼1:
1
2 3 4 5 6 7 8 9 10 11 12 |
// Remove Open Sans that WP adds from frontend
if (!function_exists(‘remove_wp_open_sans’)) : function remove_wp_open_sans() { wp_deregister_style( ‘open-sans’ ); wp_register_style( ‘open-sans’, false ); } add_action(‘wp_enqueue_scripts’, ‘remove_wp_open_sans’);// Uncomment below to remove from admin // add_action(‘admin_enqueue_scripts’, ‘remove_wp_open_sans’);endif; |
代碼2:
1
2 3 4 5 6 |
function remove_open_sans() {
wp_deregister_style( ‘open-sans’ ); wp_register_style( ‘open-sans’, false ); wp_enqueue_style(‘open-sans’,”); } add_action( ‘init’, ‘remove_open_sans’ ); |
方法三:插件法:
此方法對前臺和后臺均有去除效果,優(yōu)點(diǎn)是使用方便,再想使用谷歌字體,直接停用此插件。
1,Remove Open Sans font Link from WP core。下載:http://wordpress.org/plugins/remove-open-sans-font-from-wp-core/
2,Disable Google Fonts。下載:http://wordpress.org/plugins/disable-google-fonts/
方法四:GoAgent代理法:
如果你在使用GoAgent系統(tǒng)代理,可以在SwitchySharp或者AutoProxy選項(xiàng)里添加切換規(guī)則:
規(guī)則名稱:google-fonts
URL 模式:*://*.googleusercontent.com/*
情景模式:GoAgent
方法五:wp默認(rèn)主題過濾
如果是用第三方主題,使用上面代碼已經(jīng)足夠,若使用默認(rèn)的主題,還會加載一些其他字體,完整的代碼如下(包含Open Sans):
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
class Disable_Google_Fonts {
public function __construct() { add_filter( ‘gettext_with_context’, array( $this, ‘disable_open_sans’ ? ? ? ? ? ? ), 888, 4 ); add_action( ‘after_setup_theme’, ? ?array( $this, ‘register_theme_fonts_disabler’ ), 1 ? ? ?); } public function disable_open_sans( $translations, $text, $context, $domain ) { if ( ‘Open Sans font: on or off’ == $context && ‘on’ == $text ) { $translations = ‘off’; } return $translations; } public function disable_lato( $translations, $text, $context, $domain ) { if ( ‘Lato font: on or off’ == $context && ‘on’ == $text ) { $translations = ‘off’; } return $translations; } public function disable_source_sans_pro( $translations, $text, $context, $domain ) { if ( ‘Source Sans Pro font: on or off’ == $context && ‘on’ == $text ) { $translations = ‘off’; } return $translations; } public function disable_bitter( $translations, $text, $context, $domain ) { if ( ‘Bitter font: on or off’ == $context && ‘on’ == $text ) { $translations = ‘off’; } return $translations; } public function register_theme_fonts_disabler() { $template = get_template(); switch ( $template ) { case ‘twentyfourteen’ : add_filter( ‘gettext_with_context’, array( $this, ‘disable_lato’ ? ? ? ? ? ?), 888, 4 ); break; case ‘twentythirteen’ : add_filter( ‘gettext_with_context’, array( $this, ‘disable_source_sans_pro’ ), 888, 4 ); add_filter( ‘gettext_with_context’, array( $this, ‘disable_bitter’ ? ? ? ? ?), 888, 4 ); break; } } } $disable_google_fonts = new Disable_Google_Fonts; |
本地加載法:
對于喜歡折騰的朋友,可以使用下載字體到本地上傳到主機(jī)中,然后使用下面代碼重新加載;
正常訪問Google服務(wù)的解決方案:
這 個(gè)方法不包時(shí)效,沒準(zhǔn)過兩天就不行了,大家可以臨時(shí)修改host,打開C:\Windows\System32\drivers\etc,解析 Google到203.208.46.212就可以了(203.208.46.208 或者203.208.46.134這兩個(gè)ip目前還能用,當(dāng)然也可以直接用IP訪問).
谷歌備用IP于2014年6月10日正式失效。
另有好消息告訴大家,于2014年6月20左右開始,上海SEO蝸牛博客于很多人之前發(fā)現(xiàn)谷哥雖然香港與美國都訪問不了了,但是谷歌的粉絲做了一個(gè)站:谷粉搜搜,可以代替谷歌搜索網(wǎng)頁與圖片,搜索結(jié)果近似于原香港服務(wù)器,值得依賴。地址:
谷粉搜搜地址:http://www.gfsoso.com/
本文由:連邵虎博客與blhere博客合成,由上海SEO蝸牛博客整理發(fā)布。
轉(zhuǎn)載請注明:?蝸牛SEO? ? Google服務(wù)被“封”wordpress站長該如何應(yīng)對?