301重定向动态网址

时间:2010-09-27 03:14:41

标签: php url dynamic redirect http-status-code-301

您好如何301将http:// www.site.com/blog/index.php?id=uu5重定向到.htaccess中的http:// www.newsite.com/?

谢谢!

1 个答案:

答案 0 :(得分:1)

要对域进行永久重定向,您可以使用此

RewriteEngine On

RewriteCond %{HTTP_HOST} ^www.site.com [nc]
RewriteRule ^(.*)$ http://www.newsite.com/$1 [r=301,nc]