am working on my php project when i try to load the css file with:
<link href="<?php echo(ROOT.'views/frontend/assets/css/font-awesome.css')?>" rel="stylesheet">
where ROOT
is the variable that content the path of project on the local server.
in the browser i have a good path:
<link href="C:/wamp64/www/Clearence_Form/views/frontend/assets/css/font-awesome.css" rel="stylesheet">
but i the consol of the browser i have the error:
Not allowed to load local resource: file:///C:/wamp64/www/Clearence_Form/views/frontend/assets/css/bootstrap.css`
how can i fix this?? thanks!!