在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
当请求的路径为
server { listen 80; server_name test.com; access_log /var/log/nginx/test.com.access.log main; root /home/test; index index.html index.htm index.php; location / { try_files $uri $uri/ /index.php?q=$uri&$args; } location ~ \.php { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
此配置有几个重点要关注: 此时$_SERVER变量中,经常被各大框架或者自写程序用作路由处理使用的变量值如下: $_SERVER["REQUEST_URI"]=>"/article/update?id=1",这个是实现路由的关键,参数都存在
var_dump($uri);//获取到 article/update |
2022-08-16
2022-08-30
2022-07-18
2022-08-18
2022-07-29
请发表评论