.htaccess - Pretty User Profile URLs

后端 未结 2 928
故里飘歌
故里飘歌 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: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.

提交回复
热议问题