I created a simple html file index.html and a css file style.css. In the head of html i got:
<head>
<meta charset="UTF-8">
<title>Test</title>
<link rel="stylesheet" media="screen" href="style.css" type="text/css">
</head>
Both files are in the same folder, called "zedo_template_new" on my localhost. But when i visit http://localhost/zedo_template_new/index.html the css file is not loaded.
The crazy thing is, if i rename the folder to "edo_template_new" and visit http://localhost/edo_template_new/index.html the css file is loaded and everything works fine!
It seems that any name except "zedo_template_new" is working (i tried about 20 different names, all worked).
Additional, i can observe this behaviour on any webspace i upload this folder. What the heck is going on here? And how can i make my Apache to load css files for every folder name?
Thx for help