免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2040 | 回复: 1
打印 上一主题 下一主题

[服务应用] linux nignx rewrite 配置 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-11-22 18:40 |只看该作者 |倒序浏览
当我重启配置的时候,提示我rewrite配置有问题,如下。
  1. [root@tt vhost]# /usr/bin/nginx -s reload
  2. nginx: [emerg] "if" directive is not allowed here in /usr/local/nginx/conf/vhost/175kh.conf:24
复制代码
这个是我的nginx 的配置

  1. #start

  2. user  www www;

  3. worker_processes 16;

  4. error_log  /home/wwwlogs/nginx_error.log  crit;

  5. pid        /usr/local/nginx/logs/nginx.pid;

  6. #Specifies the value for maximum file descriptors that can be opened by this process.
  7. worker_rlimit_nofile 65535;

  8. events
  9.         {
  10.                 use epoll;
  11.                 worker_connections 1048560;
  12.         }

  13. http
  14.         {
  15.                 include       mime.types;
  16.                 default_type  application/octet-stream;

  17.                 server_names_hash_bucket_size 128;
  18.                 client_header_buffer_size 32k;
  19.                 large_client_header_buffers 4 32k;
  20.                 client_max_body_size 50m;

  21.                 sendfile on;
  22.                 tcp_nopush     on;

  23.                 keepalive_timeout 60;

  24.                 tcp_nodelay on;

  25.                 fastcgi_connect_timeout 300;
  26.                 fastcgi_send_timeout 300;
  27.                 fastcgi_read_timeout 300;
  28.                 fastcgi_buffer_size 64k;
  29.                 fastcgi_buffers 4 64k;
  30.                 fastcgi_busy_buffers_size 128k;
  31.                 fastcgi_temp_file_write_size 256k;

  32.                 gzip on;
  33.                 gzip_min_length  1k;
  34.                 gzip_buffers     4 16k;
  35.                 gzip_http_version 1.0;
  36.                 gzip_comp_level 2;
  37.                 gzip_types       text/plain application/x-javascript text/css application/xml;
  38.                 gzip_vary on;
  39.                 gzip_proxied        expired no-cache no-store private auth;
  40.                 gzip_disable        "MSIE [1-6]\.";

  41.                 #limit_zone  crawler  $binary_remote_addr  10m;

  42.                 server_tokens off;
  43.                 #log format
  44.                 log_format  w3c  '$remote_addr - $remote_user [$time_local] "$request" '
  45.                                   '$status $body_bytes_sent "$http_referer" '
  46.                                   '"$http_user_agent" $http_x_forwarded_for';
  47. server
  48.         {
  49.                 listen       80;
  50.                 server_name www.qh.com;
  51.                 index index.html index.htm index.php;
  52.                 root  /home/wwwroot/qh;
  53.                 include  vhost/qh.conf;
  54.                 location ~ .*\.(php|php5)?$
  55.                         {
  56.                                 try_files $uri =404;
  57.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  58.                                 fastcgi_index index.php;
  59.                         }

  60.                 location /status {
  61.                         stub_status on;
  62.                         access_log   off;
  63.                 }

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

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

  72.                 access_log  /home/wwwlogs/www.qh.com.access.log w3c;
  73.         }



  74.        
  75. server

  76.         {
  77.                 listen       80;
  78.                 server_name news.qh.com;
  79.                 index index.html index.htm index.php;
  80.                 root  /home/wwwroot/qh;
  81.                 include  vhost/qh.conf;
  82.                 location ~ .*\.(php|php5)?$
  83.                         {
  84.                                 try_files $uri =404;
  85.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  86.                                 fastcgi_index index.php;
  87.                         }

  88.                 location /status {
  89.                         stub_status on;
  90.                         access_log   off;
  91.                 }

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

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

  100.                 access_log  /home/wwwlogs/news.qh.com.access.log w3c;
  101.         }
  102. server

  103.         {
  104.                 listen       80;
  105.                 server_name star.qh.com;
  106.                 index index.html index.htm index.php;
  107.                 root  /home/wwwroot/qh;
  108.                 include  vhost/qh.conf;
  109.                 location ~ .*\.(php|php5)?$
  110.                         {
  111.                                 try_files $uri =404;
  112.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  113.                                 fastcgi_index index.php;
  114.                         }

  115.                 location /status {
  116.                         stub_status on;
  117.                         access_log   off;
  118.                 }

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

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

  127.                 access_log  /home/wwwlogs/star.qh.com.access.log w3c;
  128.         }

  129. server {
  130.         listen       80;
  131.         server_name  app.qh.com;

  132.         #charset koi8-r;

  133.                 access_log  /home/wwwlogs/app.qh.com.access.log w3c;
  134.                 location / {
  135.                         root   /home/wwwroot/qh/app/;
  136.                         index  index.html index.htm;
  137.                 }

  138.                 location /weixinif {
  139.                         proxy_redirect off;
  140.                         proxy_set_header Host $host;
  141.                                 proxy_set_header X-Real-IP $remote_addr;
  142.                                 proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
  143.                                 proxy_pass http://127.0.0.1:9080;
  144.                 }

  145.         #error_page  404              /404.html;

  146.         # redirect server error pages to the static page /50x.html
  147.         #
  148.         error_page   500 502 503 504  /50x.html;
  149.         location = /50x.html {
  150.             root   html;
  151.         }
  152.     }
  153. server
  154.         {
  155.                 listen       80;
  156.                 server_name lol.qh.com;
  157.                 index index.html index.htm index.php;
  158.                 root  /home/wwwroot/qh;
  159.                 include  vhost/qh.conf;
  160.                 location ~ .*\.(php|php5)?$
  161.                         {
  162.                                 try_files $uri =404;
  163.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  164.                                 fastcgi_index index.php;
  165.                         }

  166.                 location /status {
  167.                         stub_status on;
  168.                         access_log   off;
  169.                 }

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

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

  178.                 access_log  /home/wwwlogs/lol.qh.com.access.log w3c;
  179.         }       
  180. server
  181.         {
  182.                 listen       80;
  183.                 server_name blz.qh.com;
  184.                 index index.html index.htm index.php;
  185.                 root  /home/wwwroot/qh;
  186.                 include  vhost/qh.conf;
  187.                 location ~ .*\.(php|php5)?$
  188.                         {
  189.                                 try_files $uri =404;
  190.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  191.                                 fastcgi_index index.php;
  192.                         }

  193.                 location /status {
  194.                         stub_status on;
  195.                         access_log   off;
  196.                 }

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

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

  205.                 access_log  /home/wwwlogs/lol.qh.com.access.log w3c;
  206.         }       
  207. server
  208.         {
  209.                 listen       80;
  210.                 server_name hs.qh.com;
  211.                 index index.html index.htm index.php;
  212.                 root  /home/wwwroot/qh;
  213.                 include  vhost/qh.conf;
  214.                 location ~ .*\.(php|php5)?$
  215.                         {
  216.                                 try_files $uri =404;
  217.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  218.                                 fastcgi_index index.php;
  219.                         }

  220.                 location /status {
  221.                         stub_status on;
  222.                         access_log   off;
  223.                 }

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

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

  232.                 access_log  /home/wwwlogs/hs.qh.com.access.log w3c;
  233.         }
  234. server {
  235.         listen       80;
  236.         server_name  ognlol.qh.com;

  237.         #charset koi8-r;

  238.                 access_log  /home/wwwlogs/ognlol.qh.com.access.log w3c;
  239.                 location / {
  240.                         root   /home/wwwroot/qh/ognlol/;
  241.                         index  index.html index.htm;
  242.                 }

  243.         #error_page  404              /404.html;

  244.         # redirect server error pages to the static page /50x.html
  245.         #
  246.         error_page   500 502 503 504  /50x.html;
  247.         location = /50x.html {
  248.             root   html;
  249.         }
  250.     }
  251. server {
  252.         listen       80;
  253.         server_name  yxq.qh.com;
  254.      index index.html index.htm index.php;
  255.                 root  /home/wwwroot/pligg;
  256.                 location ~ .*\.(php|php5)?$
  257.                         {
  258.                                 try_files $uri =404;
  259.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  260.                                 fastcgi_index index.php;
  261.                         }

  262.                 location /status {
  263.                         stub_status on;
  264.                         access_log   off;
  265.                 }

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

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

  274.                 access_log  /home/wwwlogs/hok.qh.com.access.log w3c;
  275.          }
  276. server
  277.         {
  278.                 listen       80;
  279.                 server_name dota2.qh.com;
  280.                 index index.html index.htm index.php;
  281.                 root  /home/wwwroot/qh;
  282.                 include  vhost/qh.conf;
  283.                 location ~ .*\.(php|php5)?$
  284.                         {
  285.                                 try_files $uri =404;
  286.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  287.                                 fastcgi_index index.php;
  288.                         }

  289.                 location /status {
  290.                         stub_status on;
  291.                         access_log   off;
  292.                 }

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

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

  301.                 access_log  /home/wwwlogs/dota2.qh.com.access.log w3c;
  302.         }
  303. server {
  304.                 listen       80;
  305.                 server_name edu.qh.com;
  306.                 index index.html index.htm index.php;
  307.                 root  /home/wwwroot/qh;
  308.                 include  vhost/qh.conf;
  309.                 location ~ .*\.(php|php5)?$
  310.                         {
  311.                                 try_files $uri =404;
  312.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  313.                                 fastcgi_index index.php;
  314.                         }

  315.                 location /status {
  316.                         stub_status on;
  317.                         access_log   off;
  318.                 }

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

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

  327.                 access_log  /home/wwwlogs/edu.qh.com.access.log w3c;
  328.          }
  329. server
  330.         {
  331.                 listen       80;
  332.                 server_name live.qh.com;
  333.                 index index.html index.htm index.php;
  334.                 root  /home/wwwroot/qh;
  335.                 include  vhost/qh.conf;
  336.                 location ~ .*\.(php|php5)?$
  337.                         {
  338.                                 try_files $uri =404;
  339.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  340.                                 fastcgi_index index.php;
  341.                         }

  342.                 location /status {
  343.                         stub_status on;
  344.                         access_log   off;
  345.                 }

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

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

  354.                 access_log  /home/wwwlogs/live.qh.com.access.log w3c;
  355.         }
  356.        
  357. server {
  358.         listen       80;
  359.         server_name  image.qh.com;

  360.         charset utf-8;
  361.        
  362.                 access_log  /home/wwwlogs/image.qh.com.access.log w3c;
  363.                 location / {
  364.                         root   /home/wwwroot/qh/img/;
  365.                         index  index.html index.htm;
  366.                 }
  367.                
  368.         #error_page  404              /404.html;

  369.         # redirect server error pages to the static page /50x.html
  370.         #
  371.         error_page   500 502 503 504  /50x.html;
  372.         location = /50x.html {
  373.             root   html;
  374.         }
  375.     }
  376. server {
  377.         listen       80;
  378.         server_name  img.qh.com;

  379.         charset utf-8;
  380.        
  381.                 access_log  /home/wwwlogs/img.qh.com.access.log w3c;
  382.                 location / {
  383.                         root   /home/wwwroot/qh/css/;
  384.                         index  index.html index.htm;
  385.                 }
  386.                
  387.         #error_page  404              /404.html;

  388.         # redirect server error pages to the static page /50x.html
  389.         #
  390.         error_page   500 502 503 504  /50x.html;
  391.         location = /50x.html {
  392.             root   html;
  393.         }
  394.     }
  395. server {
  396.         listen       80;
  397.         server_name  static.qh.com;

  398.         #charset koi8-r;
  399.        
  400.                 access_log  /home/wwwlogs/static.qh.com.access.log w3c;
  401.                 location / {
  402.                         root   /home/wwwroot/qh/css/;
  403.                         index  index.html index.htm;
  404.                 }
  405.                
  406.         #error_page  404              /404.html;

  407.         # redirect server error pages to the static page /50x.html
  408.         #
  409.         error_page   500 502 503 504  /50x.html;
  410.         location = /50x.html {
  411.             root   html;
  412.         }
  413.     }

  414. server {
  415.               listen       80;
  416.               server_name  awstats.qh.com;
  417.      
  418.                 auth_basic "Welcome to qh AWSTATS";
  419.                 auth_basic_user_file /usr/local/nginx/conf/nginxpwd;

  420.               #charset koi8-r;
  421.       
  422.               access_log  /home/wwwlogs/awstats.qh.com.access.log w3c;
  423.               location / {
  424.                   root   /home/wwwroot/qh-old/awstats/;
  425.                   index  awstats.www.qh.com.html;
  426.               }
  427.       
  428.               #error_page  404              /404.html;
  429.       
  430.               # redirect server error pages to the static page /50x.html
  431.               #
  432.               error_page   500 502 503 504  /50x.html;
  433.               location = /50x.html {
  434.                   root   html;
  435.               }
  436.          }
  437. server
  438.         {
  439.                 listen       80;
  440.                 server_name best.qh.com;

  441.                 index           index.html index.htm index.php;
  442.                 root  /home/wwwroot/qh-old/brc/;

  443.                 location ~ .*\.(php|php5)?$
  444.                         {
  445.                                 try_files $uri =404;
  446.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  447.                                 fastcgi_index index.php;
  448.                         }

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

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

  457.                 access_log  /home/wwwlogs/brc.qh.com.access.log w3c;
  458.         }
  459. server
  460.         {
  461.                 listen       80;
  462.                 server_name wechat.qh.com;

  463.                 index           index.html index.htm upload.php;
  464.                 root  /home/wwwroot/qh/wechat/;

  465.                 location ~ .*\.(php|php5)?$
  466.                         {
  467.                                 try_files $uri =404;
  468.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  469.                                 fastcgi_index upload.php;
  470.                         }

  471.                 location /status {
  472.                         stub_status on;
  473.                         access_log   off;
  474.                 }

  475.                 access_log  /home/wwwlogs/wechat.qh.com.access.log w3c;
  476.         }

  477. server {
  478.         listen       80;
  479.         server_name  wow.qh.com;

  480.         #charset koi8-r;

  481.                 access_log  /home/wwwlogs/wow.qh.com.access.log w3c;
  482.                 location / {
  483.                         root   /home/wwwroot/qh/wow/;
  484.                         index  index.html index.htm;
  485.                 }

  486.         #error_page  404              /404.html;

  487.         # redirect server error pages to the static page /50x.html
  488.         #
  489.         error_page   500 502 503 504  /50x.html;
  490.         location = /50x.html {
  491.             root   html;
  492.         }
  493.     }
  494. include vhost/*.conf;
  495. }
复制代码
这个是我的vhost文件夹下的配置
  1. error_page 404 = /404.php;
  2. #rewrite "^/admin2014/?$" /admin2014/index.php last;
  3. #rewrite "^/pages/([0-9]+)\.html$" /index.php?m=detail&model_table_name=article&info_id=$1 last;
  4. #rewrite "^/pages/([0-9]+)_([0-9]+)\.html$" /index.php?m=detail&model_table_name=article&info_id=$1&p=$2 last;
  5. #rewrite "^/arters/([0-9]+)\.html$" /index.php?m=detail&model_table_name=article&info_id=$1 last;
  6. #rewrite "^/lol/([0-9]+)\.html" /index.php?m=list&cname_py=lol&p=$1 last;
  7. #rewrite "^/hs/([0-9]+)\.html" /index.php?m=list&cname_py=hs&p=$1 last;
  8. #rewrite "^/blz/([0-9]+)\.html" /index.php?m=list&cname_py=blz&p=$1 last;
  9. #rewrite "^/jiaoyuxinwen/([0-9]+)\.html" /index.php?m=list&cname_py=jiaoyuxinwen&p=$1 last;
  10. #rewrite "^/huodongxinwen/([0-9]+)\.html" /index.php?m=list&cname_py=huodongxinwen&p=$1 last;
  11. #rewrite "^/xueyuanfengcai/([0-9]+)\.html" /index.php?m=list&cname_py=xueyuanfengcai&p=$1 last;
  12. #rewrite "^/xueyuanshenghuo/([0-9]+)\.html" /index.php?m=list&cname_py=xueyuanshenghuo&p=$1 last;
  13. #rewrite "^/biyeliuying/([0-9]+)\.html" /index.php?m=list&cname_py=biyeliuying&p=$1 last;
  14. #rewrite "^/zhuanfangshipin/([0-9]+)\.html" /index.php?m=list&cname_py=zhuanfangshipin&p=$1 last;
  15. #rewrite "^/xunlianshipin/([0-9]+)\.html" /index.php?m=list&cname_py=xunlianshipin&p=$1 last;
  16. #rewrite "^/bisaishipin/([0-9]+)\.html" /index.php?m=list&cname_py=bisaishipin&p=$1 last;
  17. #rewrite "^/xuanbashipin/([0-9]+)\.html" /index.php?m=list&cname_py=xuanbashipin&p=$1 last;
  18. #rewrite "^/dota2/([0-9]+)\.html" /index.php?m=list&cname_py=dota2&p=$1 last;
  19. #rewrite "^/([0-9_a-zA-Z]+)/$" /index.php?m=list&cname_py=$1 last;
  20. #rewrite "^/bella/1$"  http://item.taobao.com/item.htm?_u=91tgts9m6713&id=39363526242&qq-pf-to=pcqq.c2c last;
  21. #rewrite "^/bella/2$"  http://item.taobao.com/item.htm?_u=91tgts9m19c4&id=39382557951&qq-pf-to=pcqq.c2c last;


  22. if ( $http_host ~ "^news.qh.com$" ) {
  23.         set $rule_23 1$rule_23;
  24. }
  25. if ($rule_23 = "1"){
  26.         rewrite ^/?$ /$http_host;
  27.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=28&p=1;
  28. }


  29. if ($http_host ~ "^live.qh.com$"){
  30.         set $rule_25 1$rule_25;
  31. }
  32. if ($rule_25 = "1"){
  33.         rewrite ^/?$ /$http_host;
  34.         rewrite ^/(.*)\.qh\.com/?$ /live.html;
  35. }

  36. if ($http_host ~ "^lol.qh.com$"){
  37.         set $rule_27 1$rule_27;
  38. }
  39. if ($rule_27 = "1"){
  40.         rewrite ^/?$ /$http_host;
  41.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=37&p=1;
  42. }

  43. if ($http_host ~ "^hs.qh.com$"){
  44.         set $rule_29 1$rule_29;
  45. }
  46. if ($rule_29 = "1"){
  47.         rewrite ^/?$ /$http_host;
  48.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=40&p=1;
  49. }

  50. if ($http_host ~ "^dota2.qh.com$"){
  51.         set $rule_31 1$rule_31;
  52. }
  53. if ($rule_31 = "1"){
  54.         rewrite ^/?$ /$http_host;
  55.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=39&p=1;
  56. }

  57. if ($http_host ~ "^edu.qh.com$"){
  58.         set $rule_31 1$rule_31;
  59. }
  60. if ($rule_31 = "1"){
  61.         rewrite ^/?$ /$http_host;
  62.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=139&p=1;
  63. }

  64. if ($http_host ~ "^star.qh.com$"){
  65.         set $rule_33 1$rule_33;
  66. }
  67. if ($rule_33 = "1"){
  68.         rewrite ^/?$ /$http_host;
  69.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=96&p=1;
  70. }

  71. if ($http_host ~ "^blz.qh.com$"){
  72.         set $rule_35 1$rule_35;
  73. }
  74. if ($rule_35 = "1"){
  75.         rewrite ^/?$ /$http_host;
  76.         rewrite ^/(.*)\.qh\.com/?$ /index.php?m=list&cate_id=169&p=1;
  77. }
复制代码
额,忘了说nginx的版本是1.6.0,我用的是lnmp的集成环境,
  1. nginx version: nginx/1.6.0
  2. built by gcc 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
  3. TLS SNI support enabled
  4. configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-ipv6
复制代码
新手求指点。

论坛徽章:
0
2 [报告]
发表于 2014-11-24 09:56 |只看该作者
自己顶,在线啊。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP