{EN} - 2.4.3.1 URL Considerations for Controller Names
As you've just seen, single word controllers map easily to a simple lower case URL path. For example, ApplesController (which would be defined in the file name 'apples_controller.php') is accessed from http://example.com/apples.
Multiple word controllers map to a camelBacked URL retaining the plural form. For examples, RedApplesController (red_apples_controller.php) would map to http://example.com/redApples and OperatingSystemsController (operating_systems_controller.php) would map to http://example.com/operatingSystems.
{EN} - 2.4.3.1 URL Considerations for Controller Names
As you've just seen, single word controllers map easily to a simple lower case URL path. For example, ApplesController (which would be defined in the file name 'apples_controller.php') is accessed from http://example.com/apples.
Multiple word controllers map to a camelBacked URL retaining the plural form. For examples, RedApplesController (red_apples_controller.php) would map to http://example.com/redApples and OperatingSystemsController (operating_systems_controller.php) would map to http://example.com/operatingSystems.
