URL rewriting is not properly configured on your server.
Help me configure it
I don't / can't use URL rewriting

i test it on localhost, using xampp
mod_rewrite.so enable

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$    webroot/    [L]
    RewriteRule    (.*) webroot/$1    [L]
</IfModule>
<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>

try to use three of them as it was recommended from
http://book.cakephp.org/view/917/Apache-and-mod_rewrite-and-htaccess ,
nothing happened, here some others :
http://ask.cakephp.org/questions/view/version_1_3_and_mamp_url_rewriting_issues
http://ask.cakephp.org/questions/view/url_rewriting_is_not_properly_configured_on_your_server

thanks to respond me

On Jun 6, 6:00 am, Ryan Schmidt <[email protected]> wrote:
> On Jun 5, 2011, at 09:56, rebornishard wrote:
>
> > url rewrite seems not working well :(
>
> Explain?

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to