I have the following problem: my root folder looks like this:
/app /awstats /cake /docs /vendors .htaccess index.php I would like to get http://www.domain.com/awstats to go to the directory /awstats, and not to route to cake. I tried the following, that didn't work. I changed root .htaccess file to: <IfModule mod_rewrite.c> RewriteEngine on RewriteRule awstats/(.*) - [L] RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule> Who can help me? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" 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 -~----------~----~----~----~------~----~------~--~---
