Mobile app version of vmapp.org
Login or Join
Kristi941

: Apache Redirect based on directory name I'm trying to use one install of Kohana to manage two separate sites rather than just duplicate the install. I have directories like this: applications/

@Kristi941

Posted in: #Apache #Kohana #ModRewrite #Php #Redirects

I'm trying to use one install of Kohana to manage two separate sites rather than just duplicate the install. I have directories like this:

applications/
app1/
app2/


The .htaccess I have looks like this:

RewriteEngine on
RedirectMatch app1/(.*)$ app1.example.com/
RewriteCond %{REQUEST_FILENAME} !.*applications/app1.*
RewriteRule .* applications/app1/index.php/[CO] [PT]


When I go to app1.example.com I get a 500 infinite redirect and the URL is app1.example.com/index.php/index.php/index.php/...

What I need is for it to look like it's going to app1.example.com but behind the scenes it is redirecting to document_root/applications/app1/index.php.

I also need this to work for app2 in the same way, but I imagine once I have it working for app1 it will essentially be identical.

If you want to throw in any tips on managing multiple sites with one Kohana install that would help too.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kristi941

1 Comments

Sorted by latest first Latest Oldest Best

 

@Kimberly868

Looks like Kohana supports multiple sites from one installation, according to the docs:
docs.kohanaphp.com/installation

Put the system folder somewhere on your server, preferably outside of your webserver's document root.
Delete the system folder in your current application.
For your application's index.php file, change the $kohana_system variable to the relative or absolute path of where you put the system folder.
You can now point all of your applications to this one system folder for easy upgrades. This makes your life a whole lot easier when you have 10+ kohana sites on your server.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme