gpt4 book ai didi

nginx - Nginx 中的 301 重写永久重定向

转载 作者:行者123 更新时间:2023-12-04 02:51:11 26 4
gpt4 key购买 nike

您好,仍在学习 linux(运行 ubuntu 10.04 lts)和 nginx(运行 1.4.1)感谢您的帮助,我已经找到了我想做的事情的例子,但他们没有详细说明我的舒适程度。 .

我将 site1.com 及其所有内容移至 site2.com,并且需要永久 301 重定向,因为我在其他网站上有很多链接,我无法更改。

我找到的最好的教程告诉我做这样的事情:

### redirect beta.cyberciti.biz$URI to www.cyberciti.biz$URI with 301 ###
server {
listen 75.126.153.206:80;
server_name beta.cyberciti.biz;
root /usr/local/nginx/html;
index index.html;
rewrite ^ $scheme://www.cyberciti.biz$request_uri permanent;
# ....
}

但是我很困惑,我是否添加了整个 block 来更改变量,或者我是否应该更改已经在我的 conf 文件中的服务器 { .... } block 。我的 conf 文件中有两个服务器 { ... } 但它们都被注释掉了(见下文)..不知道如果它们被注释掉了为什么它们在那里..

#     server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }

当前的 nginx.conf 是:

user www-data;
worker_processes 3;

error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

events {
worker_connections 1024;
# multi_accept on;
}

http {
include /etc/nginx/mime.types;

access_log /var/log/nginx/access.log;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;
tcp_nodelay on;

gzip on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}



# mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
# }

我在 http{} block 下方和所有注释 block 上方插入了您告诉我的内容。

最佳答案

在 nginx 中将 server_name 从 site1 更改为 site2,然后创建一个新的 site1 block

server {
listen 80;
server_name site1.com;
location / {
return 301 $scheme://site2.com$request_uri;
}
}

关于nginx - Nginx 中的 301 重写永久重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17633775/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com