I\'ve successfully deployed my Symfony 2 App to Heroku but now, when I\'m trying to access it, I receive the following 403 error:
Forbidden <
Forbidden
Incase anyone still having this problem you can try to replace the double quotes with single quotes in the Procfile
Example
"web: vendor/bin/heroku-php-apache2 public/"
Should be
'web: vendor/bin/heroku-php-apache2 public/'