From: Jeremy Kemper Date: 2004-12-04T02:31:41+09:00 Subject: Re: Problem with Rails and embedded SVG? Williams, Chris wrote: > Well, after some googling I found a suitable hack to embed the SVG. This might help. In public/.htaccess: # Strip .svg extension to mollify IE (put above other rules) RewriteRule ^(.*)\.svg$ $1 In app/controllers/foo_controller.rb: class FooController < AbstractApplicationController def index; end def chart send_data generate_svg_chart, :type => 'image/svg+xml' end end In app/views/foo/index.rhtml: Best, jeremy