在原有 nginx server 的基础上再加上相同端口的配置

server {
            listen 80 default_server;
            server_name _;
            return 403;
    }

配置之后如下

server {
        listen 80;
        server_name www.baidu.com;
        #ssl on;

root /www;
        
            client_max_body_size 20m;

location ~ \.php {  
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index /index.php;
            fastcgi_split_path_info  ^(.+\.php)(/.+)$;
            fastcgi_param PATH_INFO  $fastcgi_path_info;
            fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }

if (!-e $request_filename) {
               rewrite ^/index.php(.*)$ /index.php?s=$1 last;
               rewrite ^(.*)$ /index.php?s=$1 last;
               break;
           }

location / {
            index index.php index.htm;
        }
    }
    
    server {
            listen 80 default_server;
            server_name _;
            return 403;
    }

最新文章

  1. javaWeb实现登录功能
  2. C++ 类对象和 指针的区别
  3. mysql悲观锁总结和实践--转
  4. C和指针 第十一章 习题
  5. web前端基础知识 - Django进阶
  6. 移动web app 中的meta 标签
  7. 启动本地Oracle
  8. 安装phonegap
  9. ANDROID内存优化——大汇总(转)
  10. C编译过程概述
  11. [AngularJS] Isolate State Mutations in Angular Components
  12. 开心菜鸟系列----函数作用域(javascript入门篇)
  13. SQL Server无法打开用户默认数据库,登录失败,用户‘sa’登录失败,错误:4064的解决方法
  14. 【分享】JS生成随机字符串
  15. 密封关键字sealed
  16. Linux服务器操作系统
  17. 在python&numpy中切片(slice)
  18. java 基础04 重写
  19. 对某个区间操作(sort,stable_sort,parital_sort,parital_sort_copy,nth_element,is_sorted)
  20. h5 微场景

热门文章

  1. tornado 入门
  2. C++ string 类
  3. Xcel 测试版使用手册
  4. Python 开发工具和框架安装
  5. 2018-2019 ACM-ICPC, Asia Seoul Regional Contest
  6. 用opencv检测人眼并定位瞳孔位置
  7. HDU1503Advanced Fruits
  8. -03-PetaLinux通过eMMC方式启动【Xilinx-Petalinux学习】
  9. POJ 1625 Censored!(AC自动机->指针版+DP+大数)题解
  10. SpringMVC整个执行流程