I have the following directory structure:\[code\]index.php /themes/1/index.php /themes/1/style.css /themes/2/index.php /themes/2/style.css \[/code\]Etc...First index.php checks which theme is used for the specific site, then includes the index.php of that directory. The index.php calls /themes/1/style.css, but I don't want that. It's just too ugly and feels non-professional.Is it possible to let the first index.php "rewrite" the base dir to /themes/1/? So that I can call /style.css in all scenarios?