Load css and js along with htaccess |
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)
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.
(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) |
Welcome Guest, Not a member yet? Register Sign In |