I had a similar problem and found the following solution somewhere on
the web, just put it in the first .htaccess file, maybe it helps you
too.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
[EMAIL PROTECTED] schrieb:
> in my cakephp
>
> i want to do some url rewrite but whenever i put some url rule on my
> htaccess it gives (none)500 error
>
> my url is
>
> http://www.xaprio.com/Client/work/PHPcake/shop?sn=a&lb=harish
>
> and i want
>
> http://www.xaprio.com/Client/work/PHPcake/shop/a/lb/harish
>
> shop is my function in a controller
>
> plz help me
> thanx in advance
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---