OK, i have created a cms using cake in 'cms' folder, and i can access it from mysite.com/cms
i placed a htaccess file (in root) with this code to make the cms folder work as if its placed in the root ============= <IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ cms/app/webroot/ [L] RewriteRule (.*) cms/app/webroot/$1 [L] </IfModule> ============= its working fine too - but all the links produced by my cms (using html->link) are still the same. they are all pointing to mysite.com/ cms/blah1/blah2/ i want it to be like this: mysite.com/blah1/blah2/ (cms should not be there) i have deleted all the cache files from tmp directory - its still the same. can anyone tell me how to set the root url of a cake application manually? this will solve my problem. thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
