W3cubDocs

/Phalcon 3

Using PHP Built-in webserver

As of PHP 5.4.0, you can use PHP’s on built-in web server for development.

To start the server type:

php -S localhost:8000 -t /public

If you want to rewrite the URIs to the index.php file use the following router file (.htrouter.php):

if (!file_exists(__DIR__ . '/' . $_SERVER['REQUEST_URI'])) {
    $_GET['_url'] = $_SERVER['REQUEST_URI'];
}
return false;

and then start the server from the base project directory with:

php -S localhost:8000 -t /public .htrouter.php

Then point your browser to http://localhost:8000/ to check if everything is working.

© 2011–2017 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/reference/built-in.html