Ordner
- css
- root (inklusive index.php)
- sonstiges
Gibt es eine Möglichkeit den css Ordner doch zu erreichen und zwar ohne die Verzeichnisstruktur an zu tasten? Ich hab da an eine Subdomain gedacht?
Wenn Du php hast:
In root: loadcss.php
<?php
header('Content-Type: text/css; charset=iso-8859-1');
header('Cache-Control: must-revalidate, pre-check=0, no-store, no-cache, max-age=0, post-check=0');
$css = "../css/style.css";
if(file_exists($css)) echo file_get_contents($css);
?>
In Deinen Header:
<link rel='stylesheet' type='text/css' href='/loadcss.php'>
Hoffe, es hilft Dir weiter.
Cheers,
Baba