I've installed gallery 3 to my server(w2008 r2 and iis 7.5).
Seems everything is working fine.
The only problem if i do not include index.php a get internal server error.
is it about rewrite rules?
Here are the rewrite rules to import
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?kohana_uri=$1 [QSA,PT,L]
RewriteRule ^$ index.php?kohana_uri=$1 [QSA,PT,L]
RewriteRule ^index.php/(.*) $1 [QSA,R,L]
</IfModule>
Thanks in advance
Posts: 5
On my WindowsHomeServer with II6, I had to add the 'index.php' to default page settings in iis.
Only index.html en default.aspx where there.
Posts: 8
i already got it in the default documents... thanks for your reply.