我无法在Slim框架应用程序中加载静态文件(javascript或css)

时间:2017-12-24 04:34:01

标签: javascript css .htaccess slim

我使用Slim框架开发了其余的api服务。现在我必须创建Web视图来制作仪表板。我已经安装了twig视图,它工作正常。但我无法从视图页面加载css和javascript文件。项目树位于以下结构

/pani 
 /public
    index.php // public index to enter the appliaction
   .htaccess
 /repository
 /application
   /routes
     DB.php  // application database connection
     LoginRegistration.php  //login form routing
   /views
     /css   // folder containing more subfolder with css and js files
     home.php // view page for logi
/vendor
   composer.json
   composer.lock

我的.htaccess文件代码是

RewriteEngine On
RewriteCond %{REQUEST_FILENAME !-f
RewriteRule ^ index.php [QSA,L]

当我尝试运行应用程序时,我遇到了以下错误

Error files when running the page

我遇到了问题。我无法从视图中添加任何javascript或其他css文件。请建议我的方式。如果这个结构看起来很复杂,请告诉我一个简单的应用程序结构。提前谢谢。

0 个答案:

没有答案