Hi all, I have an app at http://orders.local/ and use URLs such as http://orders.local/orders http://orders.local/invoicing etc
I have php soap calls under http://orders.local/report/ and wish to exclude /report from the CakePHP rewrites. In http://orders.local/.htaccess I have tried: <IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^(report) - [L] RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule> and <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^/report/.*$ RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule> But I am still getting passed through to the app. Can anyone see where I am going wrong? Many thanks, Kym --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
