I want to set up dynamic html serving on my apache server. It means that for different types of devices (mobile, tablet, desktop) content should be different, while url stays the same.
For example:
From desktop www.example.com/index.html
Completely different layout
From mobile device www.example.com/index.html
Completely different layout
How to achieve this? What would be apache configuration?
I don't want to use RWD because layout between devices differs too much.