Because my hoster I did change on htaccess. May be bad (?)

My htaccess :

cake dir :

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$ /cakedir/app/webroot/    [L]
    RewriteRule    (.*) /cakedir/app/webroot/$1 [L]
</IfModule>

app :

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$    /cakedir/    [L]
    RewriteRule    (.*) /cakedir/$1    [L]
</IfModule>

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


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to