Nginx下多域名访问同一个目录的方法(nginx的301转向)
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上面去。