eddy: Redirect Umleitung

Beitrag lesen

Hallo,

da habe ich ja mein Beispiel her:

Move Homedirs to Different Webserver
Description:
A lot of webmaster aksed for a solution to the following situation: They wanted to redirect just all homedirs on a webserver to another webserver. They usually need such things when establishing a newer webserver which will replace the old one over time.
Solution:
The solution is trivial with mod_rewrite. On the old webserver we just redirect all /~user/anypath URLs to http://newserver/~user/anypath. RewriteEngine on
RewriteRule   ^/~(.+)  http://newserver/~$1  [R,L]

http://httpd.apache.org/docs/misc/rewriteguide.html

Doch umleiten tut er nicht und ich habe keinen Zugriff auf die Rewritelog Files.

Gruss
eddy