无法加载资源php include html

时间:2017-12-31 03:25:48

标签: php html css heroku

我的PHP Heroku APP是一个简单的index.php,上面写着:

<?php include_once ('index.html'); ?>

我的文件结构如下:

-index.html 
-index.php
-vendor
  -bootstrap
   -css
    -bootstrap.css
-css
  -creative.css

问题是当我的html文件加载并尝试访问CSS文件时,例如:

<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet">

没有加载任何CSS,而是出现错误:

  

无法加载资源:服务器响应状态为403   (禁止)

我尝试通过在我的根目录上运行find . -type d -exec chmod 755 {} \;find . -type f -exec chmod 644 {} \;来解决此问题,但这并没有解决问题。

有什么建议吗?

0 个答案:

没有答案