Mobile app version of vmapp.org
Login or Join
Gretchen104

: Kohana with cherokee How to setup kohana's index.php with cherokee webserver? Should i add a rule to redirect all to index.php? These settings don't work Rule RegExp ^.*index.php.*$ Redirect ^(.*)$

@Gretchen104

Posted in: #Kohana #ModRewrite

How to setup kohana's index.php with cherokee webserver?

Should i add a rule to redirect all to index.php?

These settings don't work

Rule RegExp ^.*index.php.*$
Redirect ^(.*)$ => index.php

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Gretchen104

1 Comments

Sorted by latest first Latest Oldest Best

 

@Reiling115

Can you try changing

Redirect ^(.*)$ => index.php


to be:

Redirect ^(.*)$ => /index.php?


You may need to play around, the addition of / and ? are intended to stop the looping. / alone may be sufficient.

You might find this answer on server fault relevant to your issue - even if cherokee and kohanna have their own syntaxes.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme