Commit c7e44c73 authored by Andy Dawson's avatar Andy Dawson

Remove unnecessary capturing group in suggested rewrite rule

It's not used, nor needed.
parent 83c4829d
...@@ -29,7 +29,7 @@ are using apache you can use a ``.htaccess`` file for this. ...@@ -29,7 +29,7 @@ are using apache you can use a ``.htaccess`` file for this.
RewriteEngine On RewriteEngine On
#RewriteBase /path/to/app #RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,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