Everything works using the builtin webserver.

When I upload to webfaction, things break.

My domain comes up fine e.g. www.xxx.com.  When I click a link I see
www.xxx.com/index.py/demo.  How do I get rid of that index.py?
Also...my js files cant be found.  There are in static/javascript/.../

Below is my .htaccess files.

 <IfModule mod_rewrite.c>
      RewriteEngine on
      RewriteBase /
      RewriteCond %{REQUEST_URI} !^/static
      RewriteCond %{REQUEST_URI} !^/icons
      RewriteCond %{REQUEST_URI} !^/favicon.ico$
      RewriteCond %{REQUEST_URI} !^(/.*)+index.py/
      RewriteRule ^(.*)$ index.py/$1 [PT]
    </IfModule>

Thanks

-- 
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.

Reply via email to