in reply to Re: Web Hosting for Monks
in thread Web Hosting for Monks

I like this idea.

With virtual hosts you can make this work really nicely, with urls like tilly.perlmonks.org...

Replies are listed 'Best First'.
Re: Re (tilly) 2: Web Hosting for Monks
by mdillon (Priest) on May 05, 2001 at 06:24 UTC

    you could even do it with a single, catch-all virtual host, using mod_rewrite.

      this just happens to be covered in the mod_rewrite URL Rewriting Guide (slightly modified for the situation in question):

      RewriteEngine on RewriteCond %{HTTP_HOST} ^[^.]+\.perlmonks.org$ RewriteRule ^(.+) %{HTTP_HOST}$1 [C] RewriteRule ^([^.]+)\.perlmonks.org(.*) /home/monks/$1$2