【问题标题】:url cleanup with .htaccess rewrite mode url cleanup使用 .htaccess 重写模式进行 url 清理 url cleanup
【发布时间】:2014-06-07 16:22:05
【问题描述】:

我有 htaccess 问题。

我想使用 htaccess 重写模式来更改这个 url:

http://somedomain.com/?id=https://play.google.com/store/apps/details?id=com.supercell.clashofclans

到这里:

http://somedomain.com/?id=com.supercell.clashofclans

我已经关注了一些 .htaccess 教程,但我做不到。我怎样才能让它发挥作用?

【问题讨论】:

    标签: .htaccess


    【解决方案1】:

    这应该适合你:

    RewriteEngine On
    RewriteCond %{QUERY_STRING} ^id=(.*)?id=(.*)
    RewriteRule ^$ /?id=%2 [L,R=301]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-09-10
      • 1970-01-01
      • 2017-02-06
      相关资源
      最近更新 更多