HIHO,
我想重定向:
http://ads.polishexpress.co.uk/en
到
http://ogloszenia.polishexpress.co.uk/en
没有改变地址栏。
我的尝试显示在下面的代码中:
RewriteEngine on
# Use PHP5.4 as default
AddHandler application/x-httpd-php54 .php
RewriteCond %{HTTP_HOST} ^ads\.polishexpress\.co\.uk$ [OR]
RewriteCond %{HTTP_HOST} ^ads\.polishexpress\.co\.uk\/en$
RewriteRule ^/?$ "http\:\/\/ogloszenia\.polishexpress\.co\.uk\/en" [L]
答案 0 :(得分:1)
尝试此规则:
RewriteCond %{HTTP_HOST} ads\.polishexpress\.co\.uk
RewriteRule ^(.*)$ http://ogloszenia.polishexpress.co.uk/$1 [r=301,nc]