rfc:builtinwebserver

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
rfc:builtinwebserver [2011/03/05 15:47] moriyoshirfc:builtinwebserver [2011/08/06 19:28] – [Request for Comments: Built-in web server] stas
Line 1: Line 1:
 ====== Request for Comments: Built-in web server ====== ====== Request for Comments: Built-in web server ======
   * Version: 1.0   * Version: 1.0
-  * Date: 2011-03-03+  * Date: 2011-06-020
   * Author: Moriyoshi Koizumi <moriyoshi.at.php.net>   * Author: Moriyoshi Koizumi <moriyoshi.at.php.net>
-  * Status: In Discussion+  * Status: Implemented in 5.4
   * First Published at: http://wiki.php.net/rfc/builtinwebserver   * First Published at: http://wiki.php.net/rfc/builtinwebserver
   * Other formats ..   * Other formats ..
Line 32: Line 32:
  
 ==== Specifying Document Root ==== ==== Specifying Document Root ====
-The document root can be specified through a remaining argument that does not belong to any option that starts with a hyphen.  If omitted, the current working directory will be used.+The document root can be specified through the -t option.  If omitted, the current working directory will be used.
  
-  php -S localhost:8000 docroot+  php -S localhost:8000 -t docroot 
 + 
 +==== Directory Indexes ==== 
 + 
 +If a request is made for a directory, the web server will return index.html or index.php if they exist in the directory.
  
 ==== Router Script ==== ==== Router Script ====
Line 41: Line 45:
   php -S localhost:8000 routing.php   php -S localhost:8000 routing.php
  
-If the path to a file is given in place of document root the file will be regarded as a router script and the document root will then be set to the directory where it belongs.+If the path to a file is given, the file will be regarded as a router script and the document root will then be set to the directory where it belongs.
  
 <code php> <code php>
rfc/builtinwebserver.txt · Last modified: 2017/09/22 13:28 by 127.0.0.1