VPS侦探论坛

 找回密码
 注册
查看: 5407|回复: 1

老大们,帮我看看我的conf配置,是否正确

[复制链接]
发表于 2012-3-30 14:29:13 | 显示全部楼层 |阅读模式

主要需要实现的目的:
1、http://abc.com  自动转换成http://www.abc.com
2、[url=http://abc.com/1.html]http://abc.com/1.html[/url] 自动转换成[url=http://www.abc.com/1.html]http://www.abc.com/1.html[/url]
3、未定义域名访问都跳转到www,如http://222.abc.com/1.html  自动转换成[url=http://www.abc.com/1.html]http://www.abc.com/1.html[/url]
4、不影响其他自定义的,如ftp.abc.com

server
{
  listen       80;
  server_name abc.com www.abc.com;
  index index.html index.htm index.php default.html default.htm default.php;
                if ($host != 'www.abc.com' ) {
                     rewrite ^/(.*)$ http://www.abc.com/$1 permanent;
                                               }
            
  root  /home/wwwroot/alay/abc.com;
  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
{
  listen       80;
  server_name ftp.abc.com;
  index index.html index.htm index.php default.html default.htm default.php;
  root  /home/wwwroot/ftp;
  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
        {
               listen       80;
               server_name  *.abc.com;
               rewrite ^/(.*)$ http://www.abc.com/$1 permanent;
        }
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
发表于 2012-3-30 18:52:49 | 显示全部楼层


可以
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-9-22 15:37 , Processed in 0.025749 second(s), 17 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表