【问题标题】:How to Use .htaccess to 301 Redirect to Another Url如何使用 .htaccess 到 301 重定向到另一个 URL
【发布时间】:2015-03-01 21:23:03
【问题描述】:

假设我有一个网站 mysite.com/websites

如何重定向到这些网址。

mysite.com/websites?url=http://google.comhttp://google.com

mysite.com/websites?url=http://yahoo.comhttp://yahoo.com

【问题讨论】:

    标签: .htaccess url redirect


    【解决方案1】:

    您可以在 .htaccess 中使用它:

    RewriteEngine on 
    RewriteCond %{QUERY_STRING} url=(.+) [NC]
    RewriteRule ^websites/?$ %1? [NC,R=301,L]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-09-08
      • 1970-01-01
      • 1970-01-01
      • 2013-08-04
      • 2021-07-22
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多