.htaccess - Pretty User Profile URLs

后端 未结 2 929
故里飘歌
故里飘歌 2020-12-11 13:07

I want to make my user profiles \'pretty\' as it were. Here is the regular URL:

user.php?user=UserName

I want this to become:

user/Username

P

相关标签:
2条回答
  • 2020-12-11 13:40
    RewriteRule ^user/(.+)$ user.php?user=$1 [L,QSA]
    
    0 讨论(0)
  • 2020-12-11 13:54

    Try these directives:

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

    This rule rewrites any request with a URL path of the form /user/foobar internally to /user.php?user=foobar.

    0 讨论(0)
提交回复
热议问题