1
我在蛋糕PHP3中創建了其他API,我需要將一些API版本添加到端點。 例如:杜梅因 - www.test.com
版本 - /test/api/v1/
所以用戶端點喜歡被www.test.com/test/api/v1/users
蛋糕PHP3其餘的API獲取圖像的公開URL
我已經改變了routes.php
文件,如下。
Router::scope('/test/api/v1/', function (RouteBuilder $routes) {
上述改變是在終端工作正常,但當我試圖讓公衆形象的URL,在webroot/img
目錄圖片如下它說Controller class Img is missing
http://test.com/test/api/v1/img/cake.png
- 我是用正確的蛋糕PHP3如何更改端點URL?
- 如果是這樣,我怎麼能得到如上
webroot/img
圖像的公共URL?