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 cake-php@googlegroups.com To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en