Whenever I link to a file, I always find myself having to include the entire absolute path like this
<link rel="stylesheet" type="text/css"
href="F:/XmppOld/XAMPP2/htdocs/MAIN_SITE_LAYOUT/css/stylemainpage.css" />
I want to simplify it to
<link rel="stylesheet" type="text/css" href="/css/stylemainpage.css" />
But I'm not sure how to do that. I attempted to place stylemainpage.css
directly inside the current page, but it didn't work.