Hello Folks,
I'd like to know if anyone has a good tutorial or wanted to make one about how to configure properly the cherokee webserver and his strange Mod_rewrite thing.
More precisely, I need a guide about how to setup a chevereto 2.0 script on cherokee webserver and make it properly working.
the .htaccess of chevereto is like this (running only on apache2 - didnt checked on nginx yet):
IF anyone is willing to help, thanks a lot! :D
*p.s. If this is the wrong section where i posted the topic, im sorry.
I'd like to know if anyone has a good tutorial or wanted to make one about how to configure properly the cherokee webserver and his strange Mod_rewrite thing.
More precisely, I need a guide about how to setup a chevereto 2.0 script on cherokee webserver and make it properly working.
the .htaccess of chevereto is like this (running only on apache2 - didnt checked on nginx yet):
Code:
ServerSignature Off
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^api$ api.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
IF anyone is willing to help, thanks a lot! :D
*p.s. If this is the wrong section where i posted the topic, im sorry.