让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享
程序员文章站
2022-05-12 11:46:09
网上搜了很多方法都不奏效,研究了一天,发现通过以下的配置可以完美支持 'url_model' => 2 的情况了 复制代码 代码如下: location /proje...
网上搜了很多方法都不奏效,研究了一天,发现通过以下的配置可以完美支持 'url_model' => 2 的情况了
location /project/ {
index index.php;
if (!-e $request_filename) {
rewrite ^/project/(.*)$ /project/index.php/$1 last;
break;
}
}
location ~ .+\.php($|/) {
set $script $uri;
set $path_info "/";
if ($uri ~ "^(.+\.php)(/.+)") {
set $script $1;
set $path_info $2;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php?if_rewrite=1;
include /apmserv/nginx/conf/fastcgi_params;
fastcgi_param path_info $path_info;
fastcgi_param script_filename $document_root/$script;
fastcgi_param script_name $script;
}
这里先把project下的请求都转发到index.php来处理,亦即thinkphp的单一入口文件;然后把对php文件的请求交给fastcgi来处理,并且添加对path_info的支持。
重启nginx以后,http://localhost/project/index/insert, http://localhost/project/index.php/index/delete 这样的url都可以正确访问了。
还有一个地方需要注意的是,nginx配置文件里 if 和后面的括号之间要有一个空格,不然会报unknown directive错误。
复制代码 代码如下:
location /project/ {
index index.php;
if (!-e $request_filename) {
rewrite ^/project/(.*)$ /project/index.php/$1 last;
break;
}
}
location ~ .+\.php($|/) {
set $script $uri;
set $path_info "/";
if ($uri ~ "^(.+\.php)(/.+)") {
set $script $1;
set $path_info $2;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php?if_rewrite=1;
include /apmserv/nginx/conf/fastcgi_params;
fastcgi_param path_info $path_info;
fastcgi_param script_filename $document_root/$script;
fastcgi_param script_name $script;
}
这里先把project下的请求都转发到index.php来处理,亦即thinkphp的单一入口文件;然后把对php文件的请求交给fastcgi来处理,并且添加对path_info的支持。
重启nginx以后,http://localhost/project/index/insert, http://localhost/project/index.php/index/delete 这样的url都可以正确访问了。
还有一个地方需要注意的是,nginx配置文件里 if 和后面的括号之间要有一个空格,不然会报unknown directive错误。
推荐阅读
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享
-
nginx支持codeigniter的pathinfo模式url重写配置写法示例
-
在nginx中配置pathinfo模式支持thinkphp的URL重写
-
ThinkPHP中的pathinfo模式和URL重写
-
nginx支持thinkphp的pathinfo解决方法
-
让ThinkPHP支持大小写url地址访问的方法_PHP
-
配备Nginx支持ThinkPHP的URL重写和PATHINFO
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享_PHP
-
Ubuntu下Nginx配置ThinkPHP的Pathinfo和URl Rewrite模式
-
Nginx下配置pathinfo及ThinkPHP的URL Rewrite模式支持