你好我将图像存储在这个目录中
APP/webroot/uploads/25/Trip/image25.png
我在浏览器中输入此网址
http://localhost/myproject/APP/webroot/uploads/25/Trip/image25.png
我可以成功看到图片
将文件上传到实时服务器后,当我输入此URL时,图像不会加载
http://www.mywebsite.com/myproject/APP/webroot/uploads/25/Trip/image25.png
它说
Error: APPController could not be found.
Error: Create the class APPController below in file: app/Controller/APPController.php
<?php
class APPController extends AppController {
}
我的httaccess文件是这个
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
我甚至尝试将index.php放入网址但仍然没有运气
http://www.mywebsite.com/myproject/index.php/APP/webroot/uploads/25/Trip/image25.png
我正在Cakephp中为mobileapp开发一个api,这就是为什么我必须先检查这样的图像。
请告诉我这里的错误。