I\'m trying to implement clean url\'s to my website, but I\'ve runned into a problem. When i\'m trying to load just the default url feks: www.example.com, everything works a
You must use absolute links:
<link href="http://www.example.com/css.css" rel="stylesheet" type="text/css">
or add in the <head>:
<head>
<base href="http://www.example.com/">
or
<base href="/">