Sie sind nicht angemeldet.

1

29.07.2009, 15:54

apache redirect url

hi all

http://test1.ch is the main page
http://test2.ch is the sub page(alias) in another language(italian)

so that means every request on http://test2.ch should be redirected to http://test1.ch/it/home

i already tried: redirect permanent http://test2.ch http://test1.ch/it/home

but nothing happens

thx
radioactiveman

2

29.07.2009, 20:50

Quellcode

1
2
3
4
<VirtualHost *:80>
    ServerAlias test2.ch
    RedirectMatch permanent ^/(.*) http://test1.ch/it/home/$1
</VirtualHost>
RTFM!

Thema bewerten