Hi! Did you already tried this:
http://bakery.cakephp.org/articles/view/mod-rewrite-on-godaddy-shared-hosting <http://bakery.cakephp.org/articles/view/mod-rewrite-on-godaddy-shared-hosting>hope it helps! =) 2010/7/6 Jay <[email protected]> > Hi All: > > I have a godaddy hosting account and having some problems with > routing. The files are under /cakephp under the default /html folder. > The full url is still showing instead of the desired www.domain.org > Please help. > > The current setup > > /cakephp/.htaccess > > <IfModule mod_rewrite.c> > RewriteEngine on > RewriteBase /cakephp > RewriteRule ^$ app/webroot/ [L] > RewriteRule (.*) app/webroot/$1 [L] > </IfModule> > > /cakephp/app/.htaccess > > <IfModule mod_rewrite.c> > RewriteEngine on > RewriteBase /cakephp > RewriteRule ^$ webroot/ [L] > RewriteRule (.*) webroot/$1 [L] > </IfModule> > > /cakephp/app/webroot/.htaccess > <IfModule mod_rewrite.c> > RewriteEngine On > RewriteBase /cakephp/ > RewriteCond %{REQUEST_FILENAME} !-d > RewriteCond %{REQUEST_FILENAME} !-f > RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] > </IfModule> > > Check out the new CakePHP Questions site http://cakeqs.org and help others > with their CakePHP related questions. > > 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]<cake-php%[email protected]>For > more options, visit this group at > http://groups.google.com/group/cake-php?hl=en > -- Flàvia Missi Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. 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
