标签: nginx url-rewriting
我正在尝试重写一些对SEO不友好的网址。
当前网址 domain.com/profile.php?user=chris
应该是: domain.com/profile/chris
我怎样才能做到这一点?
更新: 我试过了......
location /profile { rewrite ^/profile/?$ /profile.php?user=$1 last; rewrite ^/(.*)$ /profile.php?user=$1 last; }