【问题标题】:How to use .htaccess to rewrite url nicely如何使用 .htaccess 很好地重写 url
【发布时间】:2014-01-15 20:37:43
【问题描述】:

您好,我想知道我会在 .htaccess 中写什么来执行以下操作。

我想要:

profile.php?profile=X9H6W6

重定向到:

/profile/X9H6W6/

不太清楚该怎么做。

【问题讨论】:

    标签: apache .htaccess mod-rewrite redirect web


    【解决方案1】:

    您可以在DocumentRoot/.htaccess 中使用此规则:

    RewriteEngine On
    RewriteRule ^profile/([^/]+)/?$ /profile.php?profile=$1 [L,QSA]
    

    【讨论】:

      猜你喜欢
      • 2018-09-10
      • 2013-05-24
      • 2014-02-22
      • 2017-08-24
      • 2020-04-09
      • 2011-03-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多