nginx rewrite rule解决思路
程序员文章站
2024-01-17 23:24:40
...
nginx rewrite rule
实现下面的rewrite:
abc.domian.com/sort/2 => abc.domian.com/index.php?act=sort&name=abc&id=2
nginx.conf里面这么写是正确的吧:
rewrite ^/(.+)\/(\d+)\/?$ /index.php?act=$1&id=$2 last;
------解决思路----------------------
基本可以确定你用的CI框架
实现下面的rewrite:
abc.domian.com/sort/2 => abc.domian.com/index.php?act=sort&name=abc&id=2
nginx.conf里面这么写是正确的吧:
rewrite ^/(.+)\/(\d+)\/?$ /index.php?act=$1&id=$2 last;
------解决思路----------------------
基本可以确定你用的CI框架
if (\$request_uri !~ ^/(html
------解决思路----------------------
static
------解决思路----------------------
favicon/.ico
------解决思路----------------------
robots/.txt
------解决思路----------------------
index/.php.*) ) {
rewrite ^/(.*)\$ /index.php/\$1 last;
break;
}
相关文章
相关视频
上一篇: 影响服务器运行速度的因素有哪些?
推荐阅读
-
nginx rewrite rule解决思路
-
apache rewrite 如果文件不存在就调转一个地址解决思路
-
apache rewrite 重写 字符串解决思路
-
CentOS安装Nginx 报错“configure: error: the HTTP rewrite module requires the PCRE library”解决办法
-
CentOS安装Nginx 报错“configure: error: the HTTP rewrite module requires the PCRE library”解决办法
-
配置Nginx+PHP的正确思路与过程 nginx apache nginx php nginx rewrite
-
关于服务器的 rewrite解决思路
-
关于服务器的 rewrite解决思路
-
nginx下识别框架?解决思路
-
apache rewrite 如果文件不存在就调转一个地址解决思路