Moving web server configuration out of configuration - it has nothing to do with Symfony configuration

This commit is contained in:
Ryan Weaver
2016-07-13 16:04:48 -04:00
parent cd7a37c78c
commit f4c9590380
6 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
.. tip::
By using rewrite rules in your
:doc:`web server configuration </configuration/web_server_configuration>`,
:doc:`web server configuration </setup/web_server_configuration>`,
the ``index.php`` won't be needed and you will have beautiful, clean URLs
(e.g. ``/show``).

View File

@@ -67,7 +67,7 @@ as the default one.
Pretty much every other web server should be able to achieve a
behavior similar to that of the RewriteRule described above.
Check your server documentation for details or see
:doc:`/configuration/web_server_configuration`.
:doc:`/setup/web_server_configuration`.
.. note::

View File

@@ -98,7 +98,7 @@
/cookbook/configuration/front_controllers_and_kernel /configuration/front_controllers_and_kernel
/cookbook/configuration/override_dir_structure /configuration/override_dir_structure
/cookbook/configuration/using_parameters_in_dic /configuration/using_parameters_in_dic
/cookbook/configuration/web_server_configuration /configuration/web_server_configuration
/cookbook/configuration/web_server_configuration /setup/web_server_configuration
/cookbook/console/command_in_controller /console/command_in_controller
/cookbook/console/commands_as_services /console/commands_as_services
/cookbook/console/console_command /console/console_command

View File

@@ -152,7 +152,7 @@ pressing ``Ctrl+C`` from the terminal or command console.
PHP's internal web server is great for developing, but should **not** be
used on production. Instead, use Apache or Nginx.
See :doc:`/configuration/web_server_configuration`.
See :doc:`/setup/web_server_configuration`.
Checking Symfony Application Configuration and Setup
----------------------------------------------------

View File

@@ -12,7 +12,7 @@ Since PHP 5.4 the CLI SAPI comes with a `built-in web server`_. It can be used
to run your PHP applications locally during development, for testing or for
application demonstrations. This way, you don't have to bother configuring
a full-featured web server such as
:doc:`Apache or Nginx </configuration/web_server_configuration>`.
:doc:`Apache or Nginx </setup/web_server_configuration>`.
.. caution::