Veikko,
Thanks, that was the problem.  Here's what I did:
- enable mod_rewrite
- set AllowOverride All
- added the following to .htaccess in bloggie/pub
    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteBase /bloggie/
        RewriteRule ^$ index.php?/ [QSA,L]
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule (.*) index.php?/$1 [QSA,L]
    </IfModule>

-kim

2010/2/1 Veikko Mäkinen <[email protected]>:
> On 1.2.2010 3:54, Kim Coy wrote:
>>
>> Felix,
>> Thanks for the response. If I use /post I get a 404. However
>> /index.php/post works. What does that tell you?
>>
>
> It means your HTTP server's URL rewriting is not functioning. Assuming you
> are using Apache's mod_rewrite, check that you have enabled it in httpd.conf
> (Apache's configuration file) and configured it .htaccess (in your pub
> directory). Also, to allow .htaccess usage, make sure you have AllowOverride
> directive (httpd.conf) set to All (see Apache's documentation for more
> information on these settings).
>
>
> -veikko
>
> --
> Veikko Mäkinen
> [email protected]
> 044 5910 413
> http://blog.veikko.fi
>
> _______________________________________________
> users mailing list
> [email protected]
> http://lists.agavi.org/mailman/listinfo/users
>

_______________________________________________
users mailing list
[email protected]
http://lists.agavi.org/mailman/listinfo/users

Reply via email to