calm 发表于 2011-2-25 16:23:17

请教军哥一个rewrite的问题。

军哥。我服务器上面的一个网站想让他打开网站的时候默认打开的是news目录下面的首页
我我应该怎么样写?
例如打开:http://www.abc.com/
实际打开的是:http://www.abc.com/news/


我现在是直接在虚拟主机配置文件上面写:               

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

                rewrite "^/news/(.*)" /$1 last;
                        {
                              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;
                        }

                log_formatabc.com'$remote_addr - $remote_user [$time_local] $request '
             '$status $body_bytes_sent $http_referer '
             '$http_user_agent $http_x_forwarded_for';
                access_log/home/wwwlogs/abc.com.logabc.com;
      }

页: [1]
查看完整版本: 请教军哥一个rewrite的问题。