Cache_pages with different formats but the same url

Hello,

I am using a iphone optimized version of my Rails app as explained here : http://www.railspikes.com/2007/11/8/iphone-subdomains-with-rails

Everything is going well, the only problem that I have is with caching.

Because Rails is caching iphone format with the extension .html, that does not allow me to cache these files without destroy the regular version of the website.

To say it differently : Cache_pages work using the url and with different formats but the same url that does not work.

Would someone have any idea of a solution ?

Thank you very much,

Pierre

I went in caching.rb and change line 150 #request.path request.host + request.path

then adapt your apache conf. to serve the good cache files depending on the virtualhost

Pierre