我正在使用 apache2.2
http://my.site.com/redirect?url=http%3A%2F%2Fwww.google.com
->
Redirect 301 http://www.google.com
答案1
也许您需要 php 并进行重定向。
<?php
header("Location: {$_GET['redirection']}";
?>
你也可以使用
RewriteEngine on
RewriteRule ^/(.*) http://www.askdavetaylor.com/$1 [L,R=301]
正如 Dave 网站所述:http://www.askdavetaylor.com/how_do_i_add_a_301_redirect_to_my_apache_httpdconf.html