I get a blank page
vladvisinescu opened this issue · 1 comments
vladvisinescu commented
After installing this package, which seems to be the most simple to use of all, I have created this file index.php
:
$router = new \Phroute\Phroute\RouteCollector();
$router->get('/home', function () {
return 'hello world';
});
and all I get is a white page. The htaccess
file looks like this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
mrjgreen commented
Are you dispatching the route as per the example here? https://github.com/mrjgreen/phroute/blob/master/examples/simple.php#L24
If so and you are still getting a blank page you will need to make sure you have PHP's display_errors ini setting configured correctly.