Вот как настроен мой проект:
-index.php
-css
--index.css
-includes
--head.php
head.php
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="../css/index.css">
<title> My Website </title>
</head>
<body>
index.php
<?php
include(__DIR__.'/includes/head.php');
?>
Проблема в том, что index.css не работает. Я не вижу, что я делаю не так в данный момент. Любая помощь будет принята с благодарностью. Спасибо.