nginx 301重定向

环境:lnmp一键环境

vi /usr/local/nginx/conf/vhost/baidu.com.conf

server
{
listen 80;
server_name tangjiankang.top www.baidu.com baidu.com m.baidu.com ;
rewrite ^/(.*)$ http://www.xxx.com/$1 permanent;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/baidu.com;
……

/etc/init.d/nginx restart

发表回复