htaccess configuration help

Hi everybody!

I’m uploading a demo of my brand new app made with yii but I’m having sobre trouble with my htaccess I can’t resolve… :(

The thing is that my server is:

http://tonkalabs.com

And I want the demo to run in:

http://tonkalabs.com/tonkapps/tonkadoapp/

How do I have to configure de htaccess file?

I have tried with this, but it shows a 500 error





Options +FollowSymLinks

IndexIgnore */*

RewriteEngine on


# if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d


# otherwise forward it to index.php


RewriteRule ^.*$ / [L]




Can somebody help me, please?

Thanks in advance!

I have also tried with this




Options +FollowSymLinks

IndexIgnore */*

RewriteEngine on


# if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d


# otherwise forward it to index.php


RewriteRule ^$ /tonkapps/todoapp [L]



And when I access to http://tonkalabs.com/tonkapps/tonkadoapp it redirects me to http://tonkalabs.com/tonkapps/tonkadoapp/site/login but with a 404 error…

Any ideas?

Thanks!

Hi,

add rewrite base url:




RewriteEngine On

RewriteBase /tonkapps/tonkadoapp/



this should help.