nginx是个非常好的东西,现在好多网站都在用他。nginx下面的301转向如何做呢? 打开如下目录

/usr/local/nginx/conf/vhost

然后编辑你要修改的文件

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

        include wordpress.conf;
        location ~ .*\.(php|php5)?$
            {
                fastcgi_pass  unix:/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 {
server_name a.ai-wg.com b.ai-wg.com ;
rewrite ^(.*) http://blog.aiwgou.com$1 permanent;
}

然后保存即可。就是说在访问a.ai-wg.com和b.ai-wg.com的时候,会自动跳到blog.aiwgou.com上面去。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注