I have a web site which embeds the Daily Dilbert comic strip by parsing it from the RSS feed that dilbert.com publishes, but said website is SSL encrypted, and the image as published is not. This triggers a mixed content warning in Internet Explorer.
I don't want to have to pull it down once a day and serve it locally if I can help - does anyone have a link to a publicly available daily Dilbert which I can fetch with an SSL (https) URL?
Edit: I hadn't thought of proxying it myself (thanks splattne!) which solves it neatly:
RewriteCond %{REQUEST_URI} ^/dilbert-proxy/
RewriteRule ^/dilbert-proxy/(.*)$ http://dilbert.com/$1 [P]
