![]() |
doubt with views path - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: doubt with views path (/showthread.php?tid=64974) |
doubt with views path - normeno - 04-15-2016 Hi! I have a question, by default, the directory paths are in: Code: /application/views/ There is a security problem or other problem if I move this directory out of application? for example: Code: /application/* RE: doubt with views path - arma7x - 04-16-2016 You should not place it there. Read index.html in your views folder, it's say "Directory access is forbidden". Views folder is application property and not for public view/access. RE: doubt with views path - normeno - 04-16-2016 Thank you very much, I read a code of a fork that someone did in codeigniter (I do not remember where I saw it, I think in https://packagist.org/) and had never seen the outside views directory application, so had I doubt whether it was good or bad idea to replicate that. |