You can have one index.php, check the domain/url before symfony call. so you
can easily redirect to the correct application/project
On Mon, Jun 29, 2009 at 8:52 PM, Eno wrote:
>
> On Mon, 29 Jun 2009, Roland Cruse wrote:
>
> > ahh. Thanks for the explanation. I guess it must be some under the
>
On Mon, 29 Jun 2009, Roland Cruse wrote:
> ahh. Thanks for the explanation. I guess it must be some under the
> covers apache thing. DirectoryIndex documentation does not mention it
> (http://httpd.apache.org/docs/2.2/mod/mod_dir.html)
You can't have two files with the same filename in the same
On Mon, Jun 29, 2009 at 4:27 PM, Eno wrote:
>
> On Mon, 29 Jun 2009, Roland Cruse wrote:
>
>>
>> That's a bit of hoop jumping...
>>
>
> Yes because a folder can only have one index.php...
>
ahh. Thanks for the explanation. I guess it must be some under the
covers apache thing. DirectoryIndex docum
On Mon, 29 Jun 2009, Roland Cruse wrote:
>
> That's a bit of hoop jumping...
>
Yes because a folder can only have one index.php...
Another option is to make subdomains with completely separate symfony
trees, one for each application and put the relevant controller in each
web folder as inde
You can always modify the htaccess to redirect to different controller
based on the subdomain.
This is a mod redirect thing, not a Symfony thing.
On Mon, Jun 29, 2009 at 9:38 PM, Roland Cruse wrote:
>
> That's a bit of hoop jumping...
>
> Thanks for a solution.
>
> Roland
>
> On Mon, Jun 29, 200
That's a bit of hoop jumping...
Thanks for a solution.
Roland
On Mon, Jun 29, 2009 at 9:53 AM, Frank Stelzer wrote:
>
> Hi,
> 1. Create for every application an subfolder (web_frontend,
> web_backend, web_something ...)
> 2. place the front controllers there
> 3. rename them to index.php
> 4. a
Hi,
1. Create for every application an subfolder (web_frontend,
web_backend, web_something ...)
2. place the front controllers there
3. rename them to index.php
4. adept the relativ paths in the front controller to the subfolder
5. let the virtual hosts point to the just created subfolders
6. us