nginx 配置rewrite 笔记

nginx 配置rewrite笔记:

通过下面的示例来说明一下,
1. 先说说location :
location 表示匹配传入的url地址,其中配置符有多种,各种情况的意义不一样:
location ^~ /public/ {
root /data/wwwroot/a.php.abc.cc;
}
location ^~ /public/ 表示匹配以 “/public/” 开头的url,匹配成功执行其中的内容,执行完毕后停止并退出。
location / {
root /data/wwwroot/a.php.abc.cc;

include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
}

location / { ... } 表示匹配所以的url,匹配成功执行其中的内容,执行完毕后停止并退出。

rewrite ^/e10adc3949ba[/]?$ /e10adc3949ba.php last; 表示将 /e10adc3949ba 或 /e10adc3949ba/ 开头的url修改为 /e10adc3949ba.php
rewrite ^/e10adc3949ba/([a-z]*/[a-z]*)/([a-z]*)$ /e10adc3949ba.php?c=$1&a=$2 last; 表示将pathinfo地址转换为参数地址,
比如原url: /e10adc3949ba/help/manage/lists 转换后:/e10adc3949ba.php?c=help/manage&a=lists

server {
listen 80;
server_name a.php.abc.cc;

access_log /data/wwwlogs/a.php.abc.cc_nginx.log combined;
index index.html;
root /data/wwwroot/a.php.abc.cc;

location ^~ /public/ {
root /data/wwwroot/a.php.abc.cc;
}

location ^~ /datas/ {
root /data/wwwroot/a.php.abc.cc;
}

rewrite ^/e10adc3949ba[/]?$ /e10adc3949ba.php last;
rewrite ^/e10adc3949ba/([a-z]*/[a-z]*)/([a-z]*)$ /e10adc3949ba.php?c=$1&a=$2 last;
rewrite ^/e10adc3949ba/([a-z]*/[a-z]*)/([a-z]*)\?(.*)$ /e10adc3949ba.php?c=$1&a=$2&$3 last;

location ^~ /e10adc3949ba {
root /data/wwwroot/a.php.abc.cc;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/e10adc3949ba.php;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
break;
}

rewrite ^/([a-z]*)/([a-z]*)$ /index.php?m=home&c=$1&a=$2 last;
rewrite ^/([a-z]*)/([a-z]*)\?(.*)$ /index.php?m=home&c=$1&a=$2&$3 last;

location / {
root /data/wwwroot/a.php.abc.cc;

include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
}
}

整个配置的意思为:

1.优先匹配/public和/datas,这两个中包含的是公用的可公开的文件,比如js,css,自定义文件等等。
2. 如果1没有匹配上,则剩下的都是php文件。php分为两类,一个是e10adc3949ba.php (后台入口),另一个是index.php(前台入口)。
3. 先配置后台,后台的都需要包含 /e10adc3949ba , 通过这个前缀对后台进行匹配。匹配到就调用后台入口执行,执行完毕退出。
4. 上下的默认都是前台内容,先进行url转换,将phpinfo格式的url转换为参数模式。然后调用index.php入口文件执行。
5. 最后的匹配还包含了 / 的情况和其他错误的地址情况都会匹配上。错误处理由代码完成。

时间: 2024-10-27 11:00:19

nginx 配置rewrite 笔记的相关文章

nginx 配置rewrite

先说自己的情况,目前富乔使用的是lnmp一键包,解决步骤如下: 1.打开/usr/local/nginx/conf/nginx.conf   文件,在server段中,access_log句子前加入以下代码 location /ck/cashier/ { if (!-e $request_filename){ rewrite ^/ck/cashier/(.*)$ /ck/cashier/index.php?s=/$1 last; } } 其中/ck/cashier/  为二级目录,可根据自己的项

nginx配置使用笔记:三

什么是remote_addr remote_addr代表客户端的IP,但它的值不是由客户端提供的,而是服务端根据客户端的ip指定的,当你 的浏览器访问某个网站时,假设中间没有任何代理,那么网站的web服务器(Nginx,Apache等)就会把 remote_addr设为你的机器IP,如果你用了某个代理,那么你的浏览器会先访问这个代理,然后再由这个 代理转发到网站,这样web服务器就会把remote_addr设为这台代理机器的IP. 什么是x_forwarded_for 正如上面所述,当你使用了代

nginx配置rewrite

1. uri  和 url读取区别 区别就是URI定义资源,而URL不单定义这个资源,还定义了如何找到这个资源. 比如说,一个服务器上,到一个文件夹/网页的绝对地址(absolute path)就是URI. Nginx的rewirte是针对 uri的 不是url. 2. location的使用 location / { rewrite ^.*$ /index.php last; } # /是通用的目录 所有没有匹配的rewite的最后都会用/匹配 location ~ ^/asset/ { ro

Nginx配置rewrite过程介绍

创建rewrite语句 vi conf/vhost/www.abc.com.conf #vi编辑虚拟主机配置文件 文件内容 server { listen 80; server_name abc.com; rewrite ^/(.*) http://www.abc.com/$1 permanent; } server { listen 80; server_name www.abc.com; location / { root /data/www/www; index index.html in

【Nginx】Nginx配置REWRITE隐藏index.php

只需要在server里面加上 if ( !e $request_filename ) { rewrite ^/(.*)$ /index.php/$1 last; } 原文地址:https://www.cnblogs.com/BearLee/p/9520794.html

Nginx 笔记与总结(12)Nginx URL Rewrite 实例(ecshop)

访问项目地址:http://192.168.254.100/ecshop 某个商品的 URL:http://192.168.254.100/ecshop/goods.php?id=3 现在需要实现把以上 URL 改写成 http://192.168.254.100/ecshop/goods-3.html(ecshop 支持的简单重写模式) 此时访问 http://192.168.254.100/ecshop/goods-3.html 显示 404: 编辑 nginx 配置文件 nginx.con

Nginx中 Rewrite学习笔记

路由重写是Web服务器中的一个很重要的基本功能.通过路由重写,可以结构化URL,更具语义化(对SEO有益).另外,分享出去的URL可能会因程序路由变动而导致URL失效,而路由的重写可以很好的解决这类问题. 适当的使用Rewrite功能,可以更我们带来很多的好处.Nginx中Rewrite的功能是基于perl语言兼容的正则表达式,所以在编译安装nginx之前,需要安装PREC库.Nginx中Rewrite功能实现是基于ngx_http_rewrite_module,所以确保安装了此模块. Rewr

nginx配置访问控制、rewrite应用、nginx代理

一.访问控制 限制只让某个ip访问: allow 192.168.1.100; deny all; 限制只有本地地址可以访问,白名单: allow 127.0.0.1; deny all; 拒绝本地访问,黑名单: deny 127.0.0.1; allow all; deny all 直接拒绝所有,下面的allow就不生效了. [[email protected] vhosts]# vi default.conf server {     listen 80 default_server;   

nginx服务器配置/websocket nginx 配置笔记

server { listen 80; server_name xxx.com; # add_header '*' ; location /u/ { # 反向代理透传客户端ip proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-