-
Improvement
-
Resolution: Done
-
Trivial
-
None
-
3.1.1
-
None
-
Lighttpd 1.4.28 with php 5.3.3 with mysql 5.1.73
The .htaccess file shipped with phpbb contains
#
- The following 3 lines will rewrite URLs passed through the front controller
- to not require app.php in the actual URL. In other words, a controller is
- by default accessed at /app.php/my/controller, but can also be accessed at
- /my/controller
#
RewriteCond % {REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule ^(.*)$ app.php [QSA,L]
The lighttpd.sample.conf file does not have an example of using mod_rewrite to achieve the same thing. Might be beneficial to add an example to save people having to figure how how to translate the apache syntax into lighttpd mod_rewrite configuration.
Just makes the plugins that go via app.php appear a bit nicer when it's configured correctly. (i.e the board rules plugin)
Not a major issue. Just something to save others in the future some hassle.
- was obsoleted by solution of
-
PHPBB-14784 missing rewrite for lighttpd
- Unverified Fix