【问题标题】:301 redirect dynamic urls301重定向动态网址
【发布时间】:2011-04-17 14:00:45
【问题描述】:

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

谢谢!

【问题讨论】:

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


    【解决方案1】:

    要永久重定向域,您可以使用它

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

    【讨论】:

    • 别忘了开启 mod_rewrite
    猜你喜欢
    • 2010-12-03
    • 1970-01-01
    • 1970-01-01
    • 2015-03-05
    • 2012-02-19
    • 2015-06-06
    • 2016-09-01
    • 2011-06-20
    • 1970-01-01
    相关资源
    最近更新 更多