NGINX(ubuntu)非常好的PHP网址

时间:2013-08-27 14:31:42

标签: php nginx rewrite pretty-urls

我在使用php配置nginx漂亮网址时遇到了很多困难。我正在尝试重写/验证/ codehere(代码示例:dsifoj24234j)来验证.php?key = codehere

这是我当前的配置:

 location ^/verify/(.*)$ {
      /verify.php?key=$1 last;
 }

 location / {
      try_files $uri $uri/ /index.php;
 }

..它不起作用,把我带到这里,请帮助我:<

1 个答案:

答案 0 :(得分:1)

location ^/verify/(.*)$ {
    try_files /verify.php?key=$1 =404;
}

# or

rewrite ^/verify/(.*)$ /verify.php?key=$1 last;