我的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 {} \;
来解决此问题,但这并没有解决问题。
有什么建议吗?