two.dev へのすべてのリクエストを one.dev/node/10 にリダイレクトしたいのですが、それでも URL は「two.dev」または少なくとも「two.dev/node/10」と読みます。以下を試しましたが、リダイレクト ループ エラーが発生します。
<VirtualHost *:80>
ServerName two.dev
ServerAlias *.two.dev
DocumentRoot /home/websites/one.dev
Redirect permanent / /node/10/
<Directory /home/websites/one.dev>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>