Using a controller to handle returning customized css & javascript files with codeigniter
问题 I'm working on a php/codeigniter project and I'm thinking about creating a controller specifically to handle returning customized css & javascript files. In previous projects I've included external CSS & JS files in the headers of my view files but they've essentially had to be static since they were just sent as regular assets by the server. For my next project I'm thinking about using a controller and essentially making my CSS/Javascript files 'views' that are loaded by the controller. What