![]() |
Load css and js along with htaccess - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11) +--- Thread: Load css and js along with htaccess (/showthread.php?tid=70874) |
Load css and js along with htaccess - OrcaFrost - 06-12-2018 I'm using htaccess to remove index.php in url, and securing the directories. However, now I can't load css and js in view. Is there any solution for adding both without changing the htaccess method? (securing index.php) RE: Load css and js along with htaccess - dave friend - 06-12-2018 Explain where you are keeping the js and css. Also show code on how you try to load those assets. Might be good to share your .htaccess too. RE: Load css and js along with htaccess - OrcaFrost - 06-13-2018 (06-12-2018, 12:02 PM)daveĀ friend Wrote: Explain where you are keeping the js and css. Also show code on how you try to load those assets. Might be good to share your .htaccess too. Code: DirectoryIndex index.php Just now, I found a (temporary) solution. It's using file_get_contents() to get the content of the file as a string, then return the value (using echo) through controller, which can be accessed by url (like how a function in controller is called). My next question is, is the method safe? (since the only scripts accessible to users are css and js scripts) |