嗨,仍在学习 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;
# ....
}
但是我很困惑我是否添加了整个块来更改变量,或者我是否应该更改已经在我的 conf 文件中的 server { .... } 块。我的 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{} 块下方和所有注释块上方插入了您告诉我的内容。