Commit 0b6aed30 authored by Fabien Potencier's avatar Fabien Potencier

merged branch GromNaN/apache-config-qsa (PR #681)

This PR was merged into the master branch.

Discussion
----------

Suggest using QSA in apache config to get access to query parameters

A user had hard time finding why OAuth was not working on its Silex application (see https://github.com/GromNaN/FacebookServiceProvider/issues/1#issuecomment-16845793)

For the Apache doc: http://httpd.apache.org/docs/current/rewrite/flags.html#flag_qsa

Commits
-------

1cbb20e1 Suggest using QSA in apache config to get access to query parameters
parents 1cd7f3f0 1cbb20e1
...@@ -15,7 +15,7 @@ following ``.htaccess`` file: ...@@ -15,7 +15,7 @@ following ``.htaccess`` file:
RewriteEngine On RewriteEngine On
#RewriteBase /path/to/app #RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L] RewriteRule ^ index.php [QSA,L]
</IfModule> </IfModule>
.. note:: .. note::
......
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