CodeIgniter Forums
Routing by Header - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Routing by Header (/showthread.php?tid=63200)



Routing by Header - allencoded - 10-06-2015

So I have an API that I want to route by the header `Accept`. How do you do this with the routing in CI 3?

So if you nav to www.site.com/api/user it will look at the header Accept find the version in the header and then route to that controller class. I need this in order to manage api versions in the header.


RE: Routing by Header - slax0r - 10-07-2015

You would need to extend the router then. CI router can not do this on its own.