第一種:
server { location / { rewrite ^/(.*)$ http://www.baidu.com/$1 permanent; } }
第二種:
server { location / { return 301 http://www.baidu.com; } }
第三種:
server { location / { #default_type 指定顯示格式,不可缺少,!-f /home/999 主要用於使條件為真,因為/home下並沒有文件夾999 default_type text/html; if (!-f /home/999) { return 200 "<html><script>window.location.href='http://www.baidu.com'</script></html>"; } } }