龙岩易富通网络科技有限公司

龙岩小程序开发,龙岩分销系统

nginx下不带www跳转到带www

2015.09.10 | 1242阅读 | 0条评论 | 通用代码

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

if ($host != 'www.0597seo.com') {
rewrite ^/(.*)$ http://www.0597seo.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;
}

}


赞 (

发表评论