linux环境配置

Posted shenzen_小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux环境配置相关的知识,希望对你有一定的参考价值。

模板:

server {
        listen       80;
        server_name  longuuhotel.com www.longuuhotel.com m.longuuhotel.com test.longuuhotel.com;
        index index.html index.htm index.php;
        root /data/wwwroot/langyuhotel;
        location / {
          try_files $uri $uri/ /index.php?$query_string;
        #       try_files $uri $uri/index.php?$query_string;
        }
        location ~ .*.(php|php5)?$
        {
                #fastcgi_pass  unix:/tmp/php-cgi.sock;
                fastcgi_pass  127.0.0.1:9001;
                fastcgi_index index.php;
                include fastcgi.conf;
        }
        location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
        {
                expires 30d;
        }
        location ~ .*.(js|css)?$
        {
                expires 1h;
        }
        #?±?2ì?1??ò
        include /alidata/server/nginx/conf/rewrite/default.conf;
        access_log  /alidata/log/nginx/access/default.log;
}

  

 

解释:

①、

        location / {
          try_files $uri $uri/ /index.php?$query_string;
        #       try_files $uri $uri/index.php?$query_string;
        }

当用户请求 http://blog.csdn.net/example 时,这里的 $uri 就是 /example。try_files 会到硬盘里尝试找这个文件。

如果存在名为 /$root/example(其中 $root 是 WordPress 的安装目录)的文件,就直接把这个文件的内容发送给用户。

如果不存在名为 叫 example 的文件。然后就看 $uri/,增加了一个 /,也就是看有没有名为 /$root/example/ 的目录。又找不到,就会 fall back 到 try_files 的最后一个选项 /index.php,发起一个内部 “子请求”,也就是相当于 nginx 发起一个 HTTP 请求到 http://blog.csdn.net/index.php。这个请求会被 location ~ .php$ { ... } catch 住,也就是进入 FastCGI 的处理程序。而具体的 URI 及参数是在 REQUEST_URI 中传递给 FastCGI 和 WordPress 程序的,因此不受 URI 变化的影响。

 





以上是关于linux环境配置的主要内容,如果未能解决你的问题,请参考以下文章

vscode 开发微信小程序环境配置

linux学习:Nginx--常见功能配置片段与优化-06

全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段

实现Linux服务器配置深度学习环境并跑代码完整步骤

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置