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.

doc_Phalcon
2016-10-16 09:57:12
Comments
Leave a Comment

Please login to continue.