Don't use godaddy windows server

On 6/11/10, Suvlaki <suvlak...@yahoo.com> wrote:
> Ok, I added rewrite base to all three .htaccess files but still dont
> get the error pages or css filepaths working... Any other suggestions?
>
> Nick
>
> On Jun 11, 11:05 am, Sam Sherlock <sam.sherl...@gmail.com> wrote:
>> you may need to add RewriteBase
>>
>> You may need to add it to just the root htaccess (but if that does not
>> work
>> then try adding to other files as shown)
>>
>> /.htaccess
>>
>> <IfModule mod_rewrite.c>
>>    RewriteEngine on
>>    *RewriteBase /*
>>    RewriteRule    ^$ app/webroot/    [L]
>>    RewriteRule    (.*) app/webroot/$1 [L]
>> </IfModule>
>>
>> /app/.htaccess
>>
>> <IfModule mod_rewrite.c>
>>     RewriteEngine on
>>     *RewriteBase /app/*
>>     RewriteRule    ^$    webroot/    [L]
>>     RewriteRule    (.*) webroot/$1    [L]
>>  </IfModule>
>>
>> /app/webroot/.htaccess
>> <IfModule mod_rewrite.c>
>>     RewriteEngine On
>>     *RewriteBase /app/webroot/*
>>     RewriteCond %{REQUEST_FILENAME} !-d
>>     RewriteCond %{REQUEST_FILENAME} !-f
>>     RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
>> </IfModule>
>>
>> - S
>>
>> On 11 June 2010 15:42, Suvlaki <suvlak...@yahoo.com> wrote:
>>
>> > I do have the three .htaccess uploaded correctly.
>>
>> > Thank You,
>> > Nick
>>
>> > Check out the new CakePHP Questions sitehttp://cakeqs.organd 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<cake-php%2bunsubscr...@googlegroups.com>For
>> > more options, visit this group at
>> >http://groups.google.com/group/cake-php?hl=en
>
> 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
>

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

Reply via email to