我怎麼沒有辦法訪問這個list方法呢?
谁在乎昵称呢
谁在乎昵称呢 2017-08-21 16:57:36
0
2
1168

修改config.php中的ACTION_SUFFIX為Action後,無法通過路徑index.php/Home/Idex/list,是與我的環境有關係嗎,沒有使用apache只是使用了nginx。


谁在乎昵称呢
谁在乎昵称呢

全部回覆(2)
谁在乎昵称呢
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方法。 。


ringa_lee

專案目錄問題,你可以再調整一下

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!