【问题标题】:Rewrite URL for Profile Page重写个人资料页面的 URL
【发布时间】:2015-01-07 17:57:58
【问题描述】:

如何使用.htaccess进行重写:

mysite.com/profile/[username]

前往:

mysite.com/profile.php?id=[username]

我不想重新加载页面,只需更改 URL 以使其看起来不错。

感谢任何帮助。

【问题讨论】:

    标签: php .htaccess url url-rewriting


    【解决方案1】:

    这是应该帮助您入门的 htaccess 规则:

    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule profile/(.+) profile.php?id=$1
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2023-03-23
      • 2014-11-17
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-10-09
      • 2015-10-08
      相关资源
      最近更新 更多