Report this

What is the reason for this report?

How do you define a custom entrypoint for a PHP application?

Posted on October 6, 2020

For most PHP applications, the entry point is structured above the root level (i.e. public/index.php, www/index.php, etc). The PHP handler for app platform only looks for an entry point in the root directory.

Cannot serve directory /workspace/: No matching DirectoryIndex (index.php,index.html,index.htm) found, and server-generated directory index forbidden by Options directive


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi! You can set a specific directory as the document root by passing it as an argument to the run command like so:

heroku-php-apache2 public/

or

heroku-php-apache2 www/

The PHP environment uses the Heroku PHP Buildpack so you can refer to the official documentation for more info.

Did you ever find an answer to this?

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.