I have an external photo library in the root of my code igniter project that I used for my non MVC framework projects in the past.I want to use embed that library to my new code igniter project.How can I achieve this as my php photo library is not MVC based? I mean in external folder folder, it works fine when I access the index.php with my ip address like this:
http://10.0.0.27/myproject/mylibrary/
But when i try to access the library using this :
http://myproject.new/mylibrary/
it gives me error 404″ Page not found” which I can assume is due to non MVC pattern of that photo library.How can i solve this issue?is there anyway i can access my library like this??? ie.
http://myproject.new/mylibrary/
Since you don’t have
index.phpin your URL, you probably have something like this in your htaccess:The above rewrites everything except images and robots.txt to your index.php, so you can modify that to exclude
mylibraryas well: