Hello cakephp fans,

i have a webspace by 1&1. For test cases i created a subfolder "new". Now i 
changed the .htaccess like the documentation to:

/new/.htaccess

<IfModule mod_rewrite.c>   RewriteEngine on
   RewriteBase /new << seems correct, cause only "/" i get an 404 error.
   RewriteRule    ^$ app/webroot/    [L]   RewriteRule    (.*) app/webroot/$1 
[L]</IfModule>

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

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

When i open http://diestarke.de/new/ i get only the default.ctp of cakephp.

Can anyone help me with my problem?

Kind Regards Steffen

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
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].
Visit this group at http://groups.google.com/group/cake-php?hl=en.


Reply via email to