fenlang1985 发表于 2013-9-30 08:49:31

求助我想将老域名301到新域名,论坛上面的方法都试过了。无法实现,求解决

我想将老域名liu.com301到新域名www.liu360.com,求解决,nginx.conf 代码如下

server_tokens off;

#log format

log_formataccess'$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';

server

{

listen       80;

server_nameliu.com   www. liu .com ;

index index.html index.htm index.php;
            include nginx.txt;

root/home/wwwroot/default/uploads;



location ~ .*\.(php|php5)?$

{

try_files $uri =404;

fastcgi_passunix:/tmp/php-cgi.sock;

fastcgi_index index.php;

include fcgi.conf;

}


location /status {

stub_status on;

access_log   off;

}


               location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

{

expires      30d;

}


location ~ .*\.(js|css)?$

{

expires      12h;

}


access_log/home/wwwlogs/access.logaccess;

}
include vhost/*.conf;
}



首先谢谢了
页: [1]
查看完整版本: 求助我想将老域名301到新域名,论坛上面的方法都试过了。无法实现,求解决