Jim Jagielski wrote:
> Justin Erenkrantz wrote:
>
>>On Thu, Jan 24, 2002 at 04:16:50PM -0000, [EMAIL PROTECTED] wrote:
>>
>>>jim 02/01/24 08:16:50
>>>
>>> Modified: . how-to-release.html
>>> Log:
>>> Some changes due to reorg
>>>
>>All of these docs are in httpd-site/xdocs/dev.
>>
>>I believe that version is up-to-date, but please check.
>>
>>apache-devsite and dev.apache.org are no longer used. -- justin
>>
>>
>
> I just wanted to sync up dev.apache.org, which still exists, just in
> case. I'm still updating some of the other files...
why don't we change the virtual host entry for dev.apache.org to
redirect EVERYTHING to httpd://httpd.apache.org/dev/
<VirtualHost *>
ServerName dev
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/(.*) http://httpd.apache.org/dev/ [R]
</IfModule>
</VirtualHost>
???