Apache configuration

Note that ROOT_HTTP_CORE starts with a "/"! (Windows) Note that path-seperators have to be "/" in ROOT_HDD_CORE!

Module activation

LoadModule alias_module modules/mod_alias.so LoadModule rewrite_module modules/mod_rewrite.so

Alias

Alias ROOT_HTTP_CORE/ "ROOT_HDD_CORE/"
<Directory "ROOT_HDD_CORE">
    Allow from all
    AllowOverride All
</Directory>

Rewrite

RewriteEngine on

Rewrite for individual extension

RewriteRule ^ROOT_HTTP_CORE/(.*)\.EXTENSION$ "ROOT_HDD_CORE/$1.php"