Героку ничего не показывает - PullRequest
0 голосов
/ 13 января 2020

На моем локальном хосте программа работает хорошо, но когда я развертываю ее на heroku, она ничего не показывает Как это , и это моя папка Это . Вот мой индекс:

<?php
session_start();
?>

<!DOCTYPE html>
<html lang="ina">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Lovanto Blog</title>

    <link href="css/bootstrap-4.0.0.css" rel="stylesheet">
    <link href="css/styles.css" rel="stylesheet">
    <link href="css/modal.css" rel="stylesheet">
    <script src="js/jquery.min.js"></script>
    <link rel="icon" href="icon.ico" type="image/x-icon" />
</head>
<body>

    <?php
    require 'vendor/autoload.php';
    require 'cloudinary/vendor/autoload.php';
    require 'cloudinary/config.php';

    include 'conn.php';
    include 'code/clock.php';
    include 'view/header.php';
    include 'view/body.php';
    include 'view/footer.php';
    ?>
</body>
</html>

А это мой Procfile

web: vendor/bin/heroku-php-apache2
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...