1
roychan 2014-09-03 10:07:04 +08:00 1
nginx.conf
|
2
Tink 2014-09-03 10:09:51 +08:00 via iPhone 1
rewrite
|
3
arcas 2014-09-03 10:17:00 +08:00 1
先搞清楚301重定向和cname的含义。根据需求选择哪种方式合适。。
301: 将一个地址永久的重定向到指定的地址。 cname: 别名记录。这种记录允许您将多个名字映射到同一台计算机。 通常用于同时提供WWW和MAIL服务的计算机。例如,有一台计算机名为“host.mydomain.com”(A记录)。 它同时提供WWW和MAIL服务,为了便于用户访问服务。可以为该计算机设置两个别名(CNAME):WWW和MAIL。 这两个别名的全称就是www.mydomain.com和“mail.mydomain.com”。实际上他们都指向“host.mydomain.com”。(摘自 BD百科) |
4
bigtan 2014-09-03 10:25:48 +08:00 1
http://www.changbizi.net/archives/542.html
正好的我在博客上面mark了一下的 |
5
yinznet OP nginx配置像这样写?
server { isten 80; server_name old.com; rewrite ^/(.*)$ http://new.com/$1 permanent; access_log off; } |
6
2232588429 2014-09-03 11:25:55 +08:00
@arcas 你好,能否帮我看看我这个conf文件配置的有没有问题?谢谢!
server { listen 80; #ipv6 #listen [::]:80 default_server; root /var/www/hyyy.tk; #....... index index.php index.html index.htm; #.... server_name hyyy.tk; location / { try_files / /index.html; # include dz.conf; } #...... #error_page 404 /404.html; location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; } } |
7
alsotang 2014-09-03 14:41:10 +08:00
用 return
不要用 rewrite。 |