php/tp/TP/nginx 部署https项目的时候路由必须要机上index.php的问题
原因是https的配置文件上缺少url重写规则给nginx配置文件上加上url重写规则 代码如下: if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } ...