0

我正在创建一个插件网络安装程序来增强数据库的创建。我按照食谱的要求创建了标记:

Plugin/
   Install/
      Config/
      Controller/
      Model/
      View/
      webroot/
         css/
         js/
         img/

我在css文件夹中放置了一个style.css文件,在img文件夹中放置了一个图像/

按照 CookBook 的要求,我使用以下命令加载了图像:

<?php echo $this->Html->image("Install.image.jpg"); ?>

当我查看 Chrome 的控制台时,我看到了 404 错误。但是路径很好。css也是同样的问题

<?php echo $this->Html->css("Install.style.css"); ?>

当我在浏览器中输入此地址时:

http://mywebsite.com/install/css/style.css

我有一个 MissingControllerException。

我应该创建一条路线吗?

感谢您的回答。

4

0 回答 0