Search code examples
javascriptphpcssurlserver

My CSS and JS external files are not working in my project


I have a simple project with that files structure:

image of my structure

But my CSS and JS files are not loading...

<link rel="stylesheet" href="./css/main.css">

<script src="./js/main.js"></script>

Solution

  • It should be work

    <link rel="stylesheet" href="/www/public/css/main.css" type="text/css">
    
    <script type="text/javascript" src="/www/public/js/main.js"></script>