1. 程式人生 > >服務端隱藏index.php的方法!!!寶塔面板

服務端隱藏index.php的方法!!!寶塔面板

1.找到網站的配置檔案


2.複製此程式碼即可

 location / {
       if (!-e $request_filename) {
            #一級目錄
            rewrite ^/(.*)$ /index.php/$1 last;
        } 
    }