欧美精品亚洲精品日韩经典,午夜秒播,国产福利精品一区二区,亚洲国产成人精品久久,亚洲免费专区,国产精品国产三级国产a,日韩福利网站

龍巖易富通網(wǎng)絡(luò )科技有限公司

龍巖小程序開(kāi)發(fā),龍巖分銷(xiāo)系統

nginx下不帶www跳轉到帶www

2015.09.10 | 1667閱讀 | 0條評論 | 通用代碼

server
{
listen 80;
server_name m.n6224.com 0597seo.com;
index index.php index.html index.htm;
root /home/wwwroot/0597seo.com;
include /home/wwwroot/0597seo.com/.htaccess;

if ($host != 'm.n6224.com') {
rewrite ^/(.*)$ http://m.n6224.com/$1 permanent;
}

location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PHP_VALUE "open_basedir=/home/wwwroot/0597seo.com/:/tmp/:/proc/";
include fastcgi.conf;
}

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*\.(js|css)?$
{
expires 12h;
}

location ~ /\.ht {
deny all;
}

}


贊 (

發(fā)表評論