> Another problem is favicon.ico file for which I cannot find right path
> for site to read it and sent to browser. I tried putting it into
> "static" and in root directory, but no use, output reports "file not
> found".
About the favicon, I do have the following .htaccess:
RewriteRule ^/?$ /index.py/ [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)?$ /index.py/$1 [L,QSA]
Which basically, forwards everthing that is not a file or directory to
web.py, that way I can put a favicon.ico in the root folder and it'll
grab it without going through web.py. You could do the same for the
css and such.
Regards,
Hermann Käser
http://theragingche.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" 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/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---