这个是我现有的配置.
location / {
index index.php;
}
location /request/ {
rewrite ^/request/(.+)$ /request?model=$1 break;
}
location ~ \.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REQUEST_METHOD $request_method;
}我现在要实现的是,当访问: /request/concact 路径时,rewrite 到/request/?model=contact
然后不丢失POST 参数并且浏览器不跳转。
现在这个配置给我的麻烦是,请求从POST rewrite成了GET, 并且地址做了跳转。
这个是我现有的配置.
location / {
index index.php;
}
location /request/ {
rewrite ^/request/(.+)$ /request?model=$1 break;
}
location ~ \.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REQUEST_METHOD $request_method;
}我现在要实现的是,当访问: /request/concact 路径时,rewrite 到/request/?model=contact
然后不丢失POST 参数并且浏览器不跳转。
现在这个配置给我的麻烦是,请求从POST rewrite成了GET, 并且地址做了跳转。
rewrite ^/request/(.+)$ /request?model=$1 break;
这句第二个request后面加一个斜杠就好了:
rewrite ^/request/(.+)$ /request/?model=$1 break;
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号