Am 01.03.2005 um 18:03 schrieb Sebastián Sastre:
Hi Alex,
I'd like to know how can we do exactly what you have done. I
mean, with another domain/port, so we can have a smallwiki attending
port 9510 from an apache2 virtual server redirecting port 80 to it.
Can you post any script for this?
for squeak-ev, we use this:
<VirtualHost 213.239.195.232:80>
ServerAdmin marcus(a)wudika.de
ServerName
www.squeak-ev.de
DocumentRoot /home/squeak/public_html
<Directory />
Options FollowSymLinks
AllowOverride Options FileInfo
</Directory>
RewriteEngine On
RewriteRule ^/(.*).html$ /$1.html [L]
RewriteRule ^/(.*).pdf$ /$1.pdf [L]
RewriteRule ^/(.*).gif$ /$1.gif [L]
RewriteRule ^/swtemp/(.*)$ /swtemp/$1 [PT]
RewriteRule ^/(.*)$
http://localhost:8888/$1 [P,L]
</VirtualHost>