Reputation: 3398
<img src="Public/img/logo.png" />
Folder Structure is as follows
My Project
Please instruct me to get rid of this issue.
Upvotes: 0
Views: 1762
Reputation: 42964
The problem as I see it, is that you are using a relative url as your image src.
Try using and absolute url for your image.
<img src="<?php echo base_url('Public/img/logo.png'); ?>" />
Upvotes: 3