84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
修改config.php中的ACTION_SUFFIX為Action後,無法通過路徑index.php/Home/Idex/list,是與我的環境有關係嗎,沒有使用apache只是使用了nginx。
server { listen 80; charset utf-8; root D:/data/tp3/; index index.php index.html index.htm; server_name tp5.com; location / { try_files $uri $uri/ /index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s= last; break; } } location ~ \.php$ { include fastcgi_params; fastcgi_pass php_processes; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
後來把nginx配置改成這樣才可以,不過跟教程上講的不一樣,是透過http://tp5.com/Home/Index/list才訪問到list方法。 。
專案目錄問題,你可以再調整一下
後來把nginx配置改成這樣才可以,不過跟教程上講的不一樣,是透過http://tp5.com/Home/Index/list才訪問到list方法。 。
專案目錄問題,你可以再調整一下