nginx域名重定向301跳转

    server {
        listen       80;
        server_name  blog.crazypotato.cn;
	if ($host ~* blog.crazypotato.cn) { 
    		rewrite ^/(.*)$ https://blog.csdn.net/qq_37372909 permanent; 
	}
    }

  发挥作用的是下面这段
    if ($host ~* blog.crazypotato.cn) { 
            rewrite ^/(.*)$ https://blog.csdn.net/qq_37372909 permanent; 
    }

你可能感兴趣的:(nginx)