wp server

Запускає вбудований веб-сервер PHP для вказаної інсталяції WordPress.

Використання php -S для підтримки веб-сервера сервісу WordPress webroot. http://php.net/manual/en/features.commandline.webserver.php

Importantly, PHP’s built-in web server не support .htaccess files. Якщо це вимагається, можна використовувати більше розширений веб-сервер.

Використання

wp server [--host={host}] [--port={port}] [--docroot={path}] [--config={file}]

Можна вказати Глобальні параметри та такі:

[–host={host}]
Натисніть кнопку hosting to bind the server to.

Типово: localhost

[–port={port}]
port number to bind the server to.

Типово: 8080

[–docroot={path}]
Додаток для використання як документ керування. Якщо значення глобального параметра значення є параметром, нижченаведене значення є.
[–config={file}]
Налаштуйте сервер з specific .ini file.

Приклади

# Make the instance available on any address (with port 8080)
$wp server --host=0.0.0.0
PHP 5.6.9 Development Server started at Tue May 24 01:27:11 2016
Listening on http://0.0.0.0:8080
Document root is /
Press Ctrl-C для quit.
# Run on port 80 (for multisite)
$wp server --host=localhost.localdomain --port=80
PHP 5.6.9 Development Server started at Tue May 24 01:30:06 2016
Listening on http://localhost1.localdomain1:8080
Document root is /
Press Ctrl-C для quit.
# Configure the server with a specific .ini file
$wp server --config=development.ini
PHP 7.0.9 Development Server started at Mon Aug 22 12:09:04 2016
Listening on http://localhost:8080
Document root is /
Press Ctrl-C для quit.

Вихідний код команд

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *