the source to this site is inspired by werc.


Apache 2 config example:

<VirtualHost *:80>
    DocumentRoot "/web/siteroot"
    ServerName localhost
    ErrorLog "/var/log/apache2/error_log"
    CustomLog "/var/log/apache2/access_log" common

    RewriteEngine On
    RewriteCond /web/siteroot/%{REQUEST_FILENAME} !-f
    RewriteRule .* /web/wephp.php
</VirtualHost>