1. 程式人生 > 實用技巧 >新版phpstudy nginx tp 取消路由中的index.php

新版phpstudy nginx tp 取消路由中的index.php

在對應的nginx 的域名配置檔案中新增如下程式碼

if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}

效果

結果