一般使用TP框架,都要设置默认读取index.php,直接在nginx配置文件中加入以下代码就好:
if (!-e $request_filename) { rewrite ^/index.php(.*)$ /index.php?s=$1 last; rewrite ^(.*)$ /index.php?s=$1 last; break; }