php - Access sub folder of module in HMVC Codeigniter -


i have sub folder uploads in module. using hmvc extension codeigniter. structure of application following:
modules
--mymodule
----/controllers
----/models
----/views
----/uploads
-------/images

how can access images folder using url?

place uploads folder outside of application folder(root directory).

so can access

<img src="<?php echo base_url(); ?>uploads/images/logo.png" alt=""> 

i don't think works. tip

if folder inside application folder can use apppath

<img src="<?php echo apppath ?>uploads/images/logo.png" alt=""> 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -