﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
126	[Mapbender] Link to app.php instead app_dev.php	Axel Schaefer	Jeff McKenna	"A small issue with Mapbender:

In mapbender.pkg.html:

It is better to link to /mapbender/app.php/ instead of /mapbender/app_dev.php/

The app.php is production mode, the app_dev.php is development mode. App-mode is faster because it uses the caches more efficient. Dev-Mode is slower because it omits some of the caches and creates new file in it. 

Prod-Mode is to let your application run. Dev-Mode is for debugging or if you - for example - change the Twig-Templates of an application and you don't want to clear the cache all the time.

For MS4W I assume prod-mode is sufficient.

You could also make use of the rewrite engine in httpd_mapbender.conf but you have to change the Rewrite Conditions and Rewrite Rules.


{{{
 RewriteEngine On
 RewriteBase /mapbender/
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.*)$ app.php [QSA,L]
}}}


"	enhancement	closed	enhancement	3.2.3 release	MS4W - Packages	3.2.2	fixed	mapbender			
