亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

未備案網站如何使用cdn

九三
309
2021-02-10 09:41:35
欄目: 云計算

未備案網站如何使用cdn

未備案的網站使用國內CDN加速的方法

1.首先,使用記事本打開網站的配置文件,并在配置文件中添加以下配置;

server

{

listen 80;

# HTTPS配置略

server_name static.beiandomain.com; # 改成你實際已備案的二級域名(這個就是新建主機時綁定的域名)

index index.html index.htm index.php default.html default.htm default.php;

root /data/wwwroot/yourwebsitedomain.com; # 需要CDN加速的網站

# 圖片等靜態資源請求代理到本地主站(關鍵配置)

location ~* .*\.(js|css|png|jpeg|jpg|bmp|ico|ogg|ogv|svg|svgz|eot|otf|woff|woff2|mp4|ttf|rss|atom|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {

add_header Access-Control-Allow-Origin *; # 解決字體跨站問題

add_header Access-Control-Allow-Headers X-Requested-With;

add_header Access-Control-Allow-Methods GET,OPTIONS;

proxy_pass http://127.0.0.1; # 如果是啟用了https的網站,這里最好改成 https://127.0.0.1,避免主站加了非https協議的跳轉配置,導致不成功。

proxy_set_header X-Forwarded-For $remote_addr;

proxy_redirect off;

proxy_set_header Host yourwebsitedomain.com; # 這里改為實際主站域名(必須)

expires max; # 設置瀏覽器304緩存為最長期限

}

# 為這個二級域名額外設置一個robots文件

location ~ (robots.txt) {

rewrite /robots.txt /resrobots.txt last; # 在網站根目錄新增一個resrobots.txt,內容和七牛CDN類似,禁止搜索引擎抓取非靜態資源(怎么寫接著看下面)

}

# 如果通過靜態域名訪問的是非靜態資源,比如訪問了我們的文章頁面,則跳到主站對應的頁面。

location / {

if ( $request_uri !~* .*\.(js|css|png|jpeg|jpg|gif|bmp|ico|ogg|ogv|svg|svgz|eot|otf|woff|woff2|mp4|ttf|rss|atom|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf))

{

rewrite ^(.*)$ $scheme://yourwebsitedomain.com$1 permanent; # yourwebsitedomain.com修改為實際主站域名

}

}

location ~ /\. { deny all; access_log off; log_not_found off; }

access_log off;

}

2.網站配置文件修改好后,在網站根目錄中添加一個resrobots.txt文件;

User-agent: *

Allow: /robots.txt

Allow: /wp-content/

Allow: /*.png*

Allow: /*.jpg*

Allow: /*.jpeg*

Allow: /*.gif*

Allow: /*.bmp*

Allow: /*.ico*

Allow: /*.js*

Allow: /*.css*

Disallow: /

3.最后,resrobots.txt文件添加好后,在functions.php文件中添加cdn代理即可;

function QiNiuCDN(){

function Rewrite_URI($html){

$domain = 'yourwebsitedomain\.com'; //填寫主站域名,小數點前需要加上反斜杠轉義

$static = 'res.zgboke.com'; //填寫二級靜態域名(使用第三方的CDN加速后,這里需要替換成你CDN的名字,而原來已備案的二級域名則為源站)

//更多靜態資源需要替換,可以將后綴加到后面的括號,使用分隔符分割

$html = preg_replace('/http(s|):\/\/'.$domain.'\/wp-([^"\']*?)\.(jpg|png|gif|bmp|jpeg|css|js)/i','//'.$static.'/wp-$2.$3',$html);

return $html;

}

if(!is_admin()){

ob_start("Rewrite_URI");

}

}

add_action('init', 'QiNiuCDN');

0
永寿县| 盐边县| 桐梓县| 天镇县| 赣榆县| 农安县| 平塘县| 桂阳县| 大庆市| 牟定县| 兰考县| 本溪市| 随州市| 元氏县| 乳山市| 潼关县| 闵行区| 平邑县| 湛江市| 宝坻区| 珲春市| 汉沽区| 武川县| 凌海市| 铜山县| 海林市| 江门市| 弋阳县| 讷河市| 桦南县| 泰州市| 忻城县| 永福县| 永康市| 报价| 石河子市| 墨玉县| 越西县| 永安市| 伽师县| 崇阳县|