408904199 发表于 2013-10-5 17:49:52

军哥帮我审核一下这段301代码及conf文件有没有错误

www.xxx.com.conf文件
server
      {
                listen       80;
                server_name www.xxx.com xxx.com;
               server_name xxx.com;
               if ($host != 'www.xxx.com' ) {
                     rewrite^/(.*)[      DISCUZ_CODE_0      ]nbsp; http://www.xxx.com/$1permanent;
               }
                index index.html index.htm index.php default.html default.htm default.php;
                root/home/wwwroot/www.xxx.com;

                include discuzx.conf;
                location ~ .*\.(php|php5)?$
                        {
                              try_files $uri =404;
                              fastcgi_passunix:/tmp/php-cgi.sock;
                              fastcgi_index index.php;
                              include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                              expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                              expires      12h;
                        }

                access_log off;
      }

[ 本帖最后由 408904199 于 2013-10-5 18:02 编辑 ]

licess 发表于 2013-10-6 09:10:22

把你添加的代码和server_name里的xxx.com删掉,按http://lnmp.org/faq/lnmp-nginx-301-rewrite.html 添加

408904199 发表于 2013-10-13 02:51:25

回复 2# 的帖子

谢谢军哥耐心解答,这个问题解决啦

但是又有一个新问题出现,我最近有设置了404页面,404页面的301不能跳转到带www的域名上面。
比如http://xxx.com/404,他不会跳转到http://www.xxx.com/404上面去。

licess 发表于 2013-10-13 08:20:43

贴配置

408904199 发表于 2013-10-13 13:42:10

www.xxx.com.conf配置文件

server
      {
                listen       80;
                server_name www.xxx.com;
                index index.html index.htm index.php default.html default.htm default.php;
                root/home/wwwroot/www.xxx.com;
                error_page 404 /404.html;

                include discuzx.conf;
                location ~ .*\.(php|php5)?$
                        {
                              try_files $uri =404;
                              fastcgi_passunix:/tmp/php-cgi.sock;
                              fastcgi_index index.php;
                              include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                              expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                              expires      12h;
                        }

                access_log off;
      }
server {
server_name xxx.com;
return 301 $scheme://www.xxx.com$request_uri;
}

408904199 发表于 2013-10-13 13:42:57

nginx.conf配置文件

userwww www;worker_processes 1;error_log/home/wwwlogs/nginx_error.logcrit;pid      /usr/local/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;events
{
use epoll;
worker_connections 51200;
}http
{
include       mime.types;
default_typeapplication/octet-stream;server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 50m;sendfile on;
tcp_nopush   on;keepalive_timeout 60;tcp_nodelay on;fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 256k;
fastcgi_intercept_errors on;gzip on;
gzip_min_length1k;
gzip_buffers   4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types       text/plain application/x-javascript text/css application/xml;
gzip_vary on;
gzip_proxied      expired no-cache no-store private auth;
gzip_disable      "MSIE \.";#limit_zonecrawler$binary_remote_addr10m;server_tokens off;
#log format
log_formataccess'$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';server
{
listen       80;
server_name www.lnmp.org;
index index.html index.htm index.php;
root/home/wwwroot/default;location ~ .*\.(php|php5)?$
   {
    try_files $uri =404;
    fastcgi_passunix:/tmp/php-cgi.sock;
    fastcgi_index index.php;
    include fcgi.conf;
   }location /status {
   stub_status on;
   access_log   off;
}location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
   {
    expires      30d;
   }location ~ .*\.(js|css)?$
   {
    expires      12h;
   }access_log/home/wwwlogs/access.logaccess;
}
include vhost/*.conf;
}

408904199 发表于 2013-10-13 13:48:27

回复 4# 的帖子

晕,问题解决 是浏览器缓存问题。谢谢军哥
页: [1]
查看完整版本: 军哥帮我审核一下这段301代码及conf文件有没有错误