Did you already try Zend_Route and mod_rewrite approaches? would be my
first bet, though i'm on the run and can't think clearly after a whole
day of work :)
Ovidiu EFTIMIE wrote:
Hi,
I have a question concernig the usage of numbers as directory names for modules.
For example my application structure requires me to have urls like this
http://servername/1.0/controller/action
http://servername/1.1/controller/action
http://servername/1.2/controller/action
and I thought that this coud be managed by different modules respectively
application/
|---1.0
|----controllers
.........................................
|---1.5
|----controllers
|----models
|----views
The problem is that when I specify in the bootstrap file the
application module directory addModuleDirectory('../application') and
try to go to a URL like this http://servername/1.3/news ZendFramework
tries to locate a class 13_NewsController which obviously it's not a
correct name for a class.
Does anyone have any ideea how this isse can be handeled ?
Thanks,
Ovidiu