.htaccess - Pretty User Profile URLs

谁都会走 提交于 2019-12-17 20:41:14

问题


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

Please help :) Im a .htaccess newbie.


回答1:


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.




回答2:


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


来源:https://stackoverflow.com/questions/930789/htaccess-pretty-user-profile-urls

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!