Using Yii with PHP 5.4 built-in webserver instead of Apache

21 0
5
Viewed: 23 128 times
Version: Unknown (update)
Category: How-tos
Written by: samdark samdark
Updated by: samdark samdark
Created: Mar 5, 2012
Updated: 14 years ago

You are viewing revision #1 of this wiki article.
This is the latest version of this article.

Since version 5.4 PHP can work as a simple webserver so you can develop Yii applications without installing Apache. That's how to use it:

  1. Open command line and cd to webroot (where your index.php is).
  2. Run PHP as webserver:
path/to/php -S localhost:8080
  1. That's it. Now you can work with your Yii project using http://localhost:8080/.

You don't need any rewrite rules. Both clean URLs and path-style URLs are working just fine.