Commit 17c0eedc authored by Fabien Potencier's avatar Fabien Potencier

Merge branch '1.3'

* 1.3:
  added a mention of the web profiler
  Don't rewrite requests for existing directories to index.php
parents b3e4fbe4 22d47c89
...@@ -65,6 +65,13 @@ the ``Silex\Provider`` namespace: ...@@ -65,6 +65,13 @@ the ``Silex\Provider`` namespace:
* :doc:`TwigServiceProvider <providers/twig>` * :doc:`TwigServiceProvider <providers/twig>`
* :doc:`ValidatorServiceProvider <providers/validator>` * :doc:`ValidatorServiceProvider <providers/validator>`
.. note::
The Silex core team maintains a `WebProfiler
<https://github.com/silexphp/Silex-WebProfiler>`_ provider that helps debug
code in the development environment thanks to the Symfony web debug toolbar
and the Symfony profiler.
Third party providers Third party providers
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
......
...@@ -14,6 +14,7 @@ following ``.htaccess`` file: ...@@ -14,6 +14,7 @@ following ``.htaccess`` file:
RewriteEngine On RewriteEngine On
#RewriteBase /path/to/app #RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L] RewriteRule ^ index.php [QSA,L]
</IfModule> </IfModule>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment